[TOC=2]
## 枚举变量
### 认证状态
| 可选值 | 说明 |
| --- | --- |
| pending | 认证中 |
| succeed | 认证通过 |
| failed | 认证失败 |
### 性别
| 可选值 | 说明 |
| --- | --- |
| male | 男 |
| female | 女 |
| secret | 保密 |
## 查询认证信息
~~~[api]
get:/realNameInfo/get
<<<
success
//提交过认证信息
{
"code": 0,
"data": {
"id": 1,
"user_id": 2,//用户信息id
"status": "pending",//认证状态
"name": "123",//用户姓名
"gender": "male",//用户性别
"id_card": "11111111111111111x",//身份证号码
"id_card_pictures": [//证件照
"11"
],
"birthday':null,
"create_time": "2018-02-28 11:06:24",//提交认证时间
"update_time": "2018-02-28 11:06:24"//更新时间
}
}
<<<
success
//没有提交过认证信息
{
"code": 0
}
~~~
## 用认证信息提交
>[info] 初次认证和再次认证都使用同一个接口
~~~[api]
post:/realNameInfo/apply
*string:name=姓名#姓名
*string:gender=male#性别 可选值见枚举变量
*string:id_card=123456789987456321#身份证号码 18位
*string:id_card_pictures=[]#身份证 正反面地址
*date:birthday=2017-02-02#生日
<<<
success
{
"code": 0,
"data": {
"id": 1,
"user_id": 2,
"status": "pending",
"name": "",
"gender": "male",
"id_card": "",
"id_card_pictures": [
],
"birthday":"2017-02-02",
"create_time": "2018-02-08 10:46:37",
"update_time": "2018-02-08 10:55:40"
}
}
<<<
error
{
"code": -1,
"msg": "性别必须"
}
~~~
## 获取用户配置信息
~~~[api]
get:/configs/get
<<<
success
{
"code": 0,
"data": {
"configs": null,//其他配置信息
"rest_in_dates": null,//停止接单日期数组
"rest_from_date": null,//该日期开始不再接单
"member_number": 10,//队伍人数
"pictures": null//工作照片
}
}
~~~
## 设置队伍人数
~~~[api]
post:/configs/updateMemberNumber
*int:number=1#队伍人数
<<<
success
{
"code": 0
}
<<<
error
{
"code": -1,
"msg": "队伍人数最少一人"
}
~~~
## 设置工作照
~~~[api]
post:/configs/updatePictures
*array:pictures=[]#工作照片数据
<<<
success
{
"code": 0
}
<<<
error
{
"code": -1,
"msg": "工作照格式不正确"
}
~~~
## 设置停止接单时间
~~~[api]
post:/configs/updateNoWorkingDates
*array:rest_in_dates=[]#不上工时间数组
*date:rest_from_date=2017-01-01 00:00:00 #不接单时间
<<<
success
{
"code": 0
}
<<<
error
{
"code": -1,
"msg": "时间格式不正确"
}
~~~
## 服务报价
~~~[api]
post:/configs/updateQuotation
*int:price=0#参考价格
*string:description=""#报价描述
<<<
success
{
"code":0
}
<<<
error
{
"code": -2,
"msg": "请先购买会员"
}
~~~
- 使用须知
- 共用数据
- 数据库
- 管理员
- 管理--登录注册
- 管理--个人资料
- 管理--工种相关
- 管理--工作相关
- 管理--蔬菜分类
- 管理--订单相关
- 管理--用户相关
- 管理--消息相关
- 管理--banner
- 管理--认证相关
- 管理--蔬菜改版
- 雇主端
- 雇主--登录注册
- 雇主--个人资料
- 雇主--设备相关
- 雇主--控制设备
- 雇主--用工地址
- 雇主--我的收藏
- 雇主--工种相关
- 雇主--我的订单
- 雇主--我的红包
- 雇主--评价订单
- 雇主--消息相关
- 雇主--积分相关
- 雇主--民工列表
- 雇主--banner
- 雇主--邀请注册
- 雇主--分享民工
- 民工端
- 民工--登录注册
- 民工--个人资料
- 民工--我的红包
- 民工--订单相关
- 民工--我的订单
- 民工--评价订单
- 民工--消息相关
- 民工--积分相关
- 民工--认证相关
- 民工--工种相关
- 民工--会员相关
- 民工--分享相关
- 民工--服务区域
- 民工--服务技能
- 民工--邀请注册