💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
[TOC=2] ## 枚举变量 >[info] 订单相关的枚举变量说明(前端类似下拉框) > 需要用到变量的时候,请自行比对。 ### 劳务费计算方式参数如下: | 可选值 | 说明 | | --- | --- | | total | 总价包干 | | per_unit | 按件计算 | | per_day | 按天计算 | | null | 电话议价 | ### 订单类型参数如下: | 可选值 | 说明 | | --- | --- | | bid | 招标 | | phone_reservation | 电话预约 | | online_reservation | 在线预约 | ### 订单状态说明: | 可选值 | 说明 | | --- | --- | | pending | 待支付,如果雇主需要付费才能招工,会进入此状态 | | processing | 处理中,如果是招标单,表示招标中;如果是预约单,表示等待工人确认 | | succeed | 成功,已选择招标候选,或预约已被确认 | | finished | 已完成,或者工人没来都算作完成状态 | | cancelled | 已取消,超时未成功招工或预约被拒绝 | | timeout | 招标或预约未及时处理,雇主的单没有选人,民工没有及时同意预约,都算超时 | | refused | 预约被拒绝 | ### 订单额外状态说明: | 可选值 | 说明 | | --- | --- | | normal | 正常 | | absence | 招工成功但工人没来 | | labour_cancelled | 工人取消 | ### 取消招工原因说明: | 可选值 | 说明 | | --- | --- | | just_trying | 只是试一下 | | no_need | 不需要了 | | dislike_labour | 不想找这个工人 | | better_platform | 从其它渠道找到工人了 | | others | 其它原因 | | time | 时间不合适 | | price | 价格不合适 | | cant_contact | 没有联系上 | | null | 雇主主动取消 | ### 支付方式说明: >[info] 后台暂时只设置微信支付,前端仅能微信支付。 | 可选值 | 说明 | | --- | --- | | wechat | 微信支付 | ## 订单列表 ~~~[api] get:/order/list int:current_page=1#当前页 int:page_number=10#页码 <<< success { "code": 0, "data": { "order": [ { "id": 1, "title": "标题",//标题 "description": "描述",//描述 "employer_name": "雇主名",//雇主名 "employer_phone": "13333333333",//雇主手机号 "employer_id": 2,//雇主id "labour_id": 2,//民工id "job_category_name": "工种名称",//工种名 "job_name": "工作/蔬菜名",//蔬菜名 "specifications": [//招工详细信息 { } ], "address": [//详细上工地址 { "province": "四川省" } ], "reservation_time": "2017-01-01 01:01:01",//上工时间 "labour_number": 3,//招工人数 "charging_method": "total",//计费方式 详情见枚举变量 "cost": 1000,// 费用 不同的计费方式 价钱不同 "with_shuttle": true,//是否接送 "memo": "",//备注信息 "type": "bid",//订单类型 详情见枚举变量 "status": "finished",//订单状态 详情见枚举变量 "sub_status": "normal",//订单子状态 详情见枚举变量 "cancel_reason": null,// 取消原因 详情见枚举变量 "employer_rated": true,//雇主是否评价 true 已评价 false 未评价 "labour_rated": true,//民工是否评价 true 已评价 false 未评价 "extra": [],// 订单其他属性 "publish_time": "2018-02-06 14:41:03",//发布时间 "finish_time": null,// 开始时间 "create_time": "2018-02-06 14:39:05",//创建时间 "rush_list": [ { "id": 36, "user_id": 2, "order_id": 61, "type": "phone_reservation", "status": "refused", "cancel_reason": null, "create_time": "2018-04-27 18:10:34", "name": "哈哈", "phone": "15181474781" } ] } ], "current_page": 1,//当前页 "page_number": 10,//页码 "count": 1//总条数 } } ~~~ ## 雇主的订单 ~~~[api] get:/order/employerOrder *int:id=0#雇主id int:current_page=1#当前页 int:page_number=10#页码 <<< success { "code": 0, "data": { "order": [ { "id": 1, "title": "标题",//标题 "description": "描述",//描述 "employer_name": "雇主名",//雇主名 "employer_phone": "13333333333",//雇主手机号 "employer_id": 2,//雇主id "labour_id": 2,//民工id "job_category_name": "工种名称",//工种名 "job_name": "工作/蔬菜名",//蔬菜名 "specifications": [//招工详细信息 { } ], "address": [//详细上工地址 { "province": "四川省" } ], "reservation_time": "2017-01-01 01:01:01",//上工时间 "labour_number": 3,//招工人数 "charging_method": "total",//计费方式 详情见枚举变量 "cost": 1000,// 费用 不同的计费方式 价钱不同 "with_shuttle": true,//是否接送 "memo": "",//备注信息 "type": "bid",//订单类型 详情见枚举变量 "status": "finished",//订单状态 详情见枚举变量 "sub_status": "normal",//订单子状态 详情见枚举变量 "cancel_reason": null,// 取消原因 详情见枚举变量 "employer_rated": true,//雇主是否评价 true 已评价 false 未评价 "labour_rated": true,//民工是否评价 true 已评价 false 未评价 "extra": [],// 订单其他属性 "publish_time": "2018-02-06 14:41:03",//发布时间 "finish_time": null,// 开始时间 "create_time": "2018-02-06 14:39:05",//创建时间 } ], "current_page": 1,//当前页 "page_number": 10,//页码 "count": 1//总条数 } } ~~~ ## 民工的订单 ~~~[api] get:/order/labourOrder *int:id=0#民工订单 int:current_page=1#当前页 int:page_number=10#页码 <<< success { "code": 0, "data": { "order": [ { "id": 18, "user_id": 2, "order_id": 21, "type": "phone_reservation", "status": "succeed", "cancel_reason": null, "create_time": "2018-03-23 20:25:47", "order_info": { "id": 21, "title": "拾掇蔬菜大西红柿", "description": "", "employer_name": "大23", "employer_phone": "13551344444", "job_category_name": "拾掇蔬菜", "job_name": "大西红柿", "specifications": [ { "工作量": "456棵", "棵子高度": "棵子高度超过钢丝", "服务内容(可多选)": "吊嘟噜(中上棚)、打头掐须子" } ], "address": [ { "id": 3, "area": "古城区域", "city": "潍坊市", "name": "大23", "town": "古城街道", "phone": "13551344444", "area_id": 135, "user_id": 6, "village": "安家村", "district": "寿光市", "province": "山东省", "is_default": false } ], "reservation_time": "2018-03-23 20:25:33", "labour_number": 1, "charging_method": null, "cost": null, "with_shuttle": true, "memo": null, "type": "phone_reservation", "status": "succeed", "sub_status": "normal", "cancel_reason": null, "employer_rated": false, "labour_rated": false, "extra": null, "publish_time": "2018-03-23 20:25:47", "finish_time": null } } ], "current_page": 1, "page_number": 10, "count": 18 } } ~~~ ## 订单搜索 ~~~[api] get:/order/search *string:search=15181474781# 搜索内容,雇主姓名或者雇主手机号 <<< success 返回内容和订单列表的data 返回一致 ~~~