ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
#### 列表 > 状态,0=>已取消,1=>待付款,2=>待发货,3=>待收货,4=>待完成,5=>已完成,6=>已评价 ~~~[api] get:/dealer/order/index/index string:status=0#状态,0=>全部,1=>待付款,2=>待发货,3=>待收货,4=>待完成,5=>已完成,6=>已评价 number:storesId#门店ID number:p=1#当前页数 numbner:ps=20#分页大小 <<< success { "code": 1, "msg": "", "time": "2018-07-08 21:32:02", "data": [ { "id": 53, "dealer_id": 1, "stores_id": 2, "member_id": 5, "referrer_id": 0, "sn": "20180708132548246062", "buyer_ip": "112.97.60.46", "buyer_terminal": 3, "consignee": "收货人", "mobile": "18666864521", "email": "", "country": "86", "province": "100000", "city": "110000", "district": "111000", "twon": "0", "address": "详细地址", "zipcode": "", "longitude": "0", "latitude": "0", "delivery_type": 2, "delivery_price": "0.00", "express_name": "", "express_shipper_code": "", "express_code": "", "express_price": "0.00", "express_remark": "", "other_price": "0.00", "other_price_remark": "", "redpacket_deduction": "0.00", "coupon_deduction": "0.00", "balance_deduction": "0.00", "actual_price": "100.00", "price": "20.00", "member_remark": "", "remark": "", "pay_type": 2, "pay_code": "4200000124201807083331528542", "sort": 0, "is_cancel": 0, "is_payment": 1, "is_deliver": 0, "is_receiving": 0, "is_complete": 0, "is_evaluate": 0, "status": 2, "created_at": "2018-07-08 13:25:48", "updated_at": "2018-07-08 13:25:57", "cancel_at": "2016-01-01 00:00:00", "payment_at": "2018-07-08 13:25:57", "deliver_at": "2016-01-01 00:00:00", "receiving_at": "2016-01-01 00:00:00", "complete_at": "2016-01-01 00:00:00", "evaluate_at": "2016-01-01 00:00:00", "stores": { "id": 2, "name": "门店2", "thumb": "http://oss.dgyouduo.com/static/img/no-image.png" }, "order_goods": [ { "id": 43, "order_id": 53, "name": "测试商品1", "thumb": "http://oss.dgyouduo.com/static/img/no-image.png", "price": "10.00", "market_price": "20.00", "number": 2 } ], "status_text": "待发货" } ], "_meta": { "totalCount": 1, "pageCount": 1, "currentPage": 1, "perPage": 20 } } ~~~ #### 详情 ~~~[api] get:/dealer/order/index/retrieve/id/:id <<< success { "code": 1, "msg": "", "time": "2018-07-08 21:12:27", "data": { "id": 4, "dealer_id": 1, "stores_id": 1, "member_id": 5, "referrer_id": 0, "sn": "20180625020315722836", "buyer_ip": "127.0.0.1", "buyer_terminal": 3, "consignee": "收货人", "mobile": "18666864521", "email": "", "country": "86", "province": "100000", "city": "110000", "district": "111000", "twon": "0", "address": "详细地址", "zipcode": "", "longitude": "1", "latitude": "1", "delivery_type": 1, "delivery_price": "0.00", "express_name": "", "express_shipper_code": "", "express_code": "", "express_price": "0.00", "express_remark": "", "other_price": "0.00", "other_price_remark": "", "redpacket_deduction": "0.00", "coupon_deduction": "0.00", "balance_deduction": "0.00", "actual_price": "0.00", "price": "10.00", "member_remark": "", "remark": "", "pay_type": 0, "pay_code": "", "sort": 0, "is_cancel": 1, "is_payment": 0, "is_deliver": 0, "is_receiving": 0, "is_complete": 0, "is_evaluate": 0, "status": 0, "created_at": "2018-06-25 02:03:15", "updated_at": "2018-06-25 11:24:27", "cancel_at": "2018-06-25 11:24:27", "payment_at": "2016-01-01 00:00:00", "deliver_at": "2016-01-01 00:00:00", "receiving_at": "2016-01-01 00:00:00", "complete_at": "2016-01-01 00:00:00", "evaluate_at": "2016-01-01 00:00:00", "stores": { "id": 1, "name": "门店1", "thumb": "http://oss.dgyouduo.com/static/img/no-image.png" }, "order_goods": [ { "id": 1, "order_id": 4, "name": "商品1", "thumb": "http://oss.dgyouduo.com/static/img/no-image.png", "price": "10.00", "market_price": "20.00", "number": 1 } ], "status_text": "已取消" } } ~~~ #### 发货 > 根据用户选择配送方式传递不同的参数 > 快递:`express_id`、`express_code`、`express_remark` > 配送员配送:`distributor_id` > 自取:无 ~~~[api] post:/dealer/order/index/deliver/id/:id *number:express_id#快递ID *string:express_code#快递编码 string:express_remark#快递备注 *number:distributor_id#配送员ID <<< success { "code": 1, "msg": "success", "time": "2018-07-11 08:55:02", "data": [] } ~~~ #### 完成 ~~~[api] post:/dealer/order/index/success/id/:id <<< success { "code": 1, "msg": "success", "time": "2018-07-12 19:00:04", "data": [] } ~~~