多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
**简要描述:** - 提货核销列表 **请求URL:** - `/adminapi/selffetch_shop.verification/lists` **请求方式:** - GET **参数:** |参数名 |必选 |类型 |说明 | | ------ | ------ | ------ |------ | |pickup_code |否 |string |提货码 | |verification_status |否 |int |核销状态:0-待核销;1-已核销; | |order_sn |否 |string |订单信息 | |user_info |否 |string |用户信息 | |goods_name |否 |string |商品名称 | |contact_info |否 |string |收货人信息 | |time_type |否 |string |时间类型:create_time-下单时间;pay_time-支付时间 | |start_time |否 |string |开始时间 | |end_time |否 |string |结束时间 | **返回示例** ``` { "code": 1, "show": 0, "msg": "", "data": { "lists": [ { "id": 2, "sn": "wx202008051232333", "order_amount": "1000.00", "create_time": "2021-07-08 16:03:13", "nickname": "木 直", "avatar": "http://www.likeshopb2cv3.localhost/uploads/user/avatar/6dc3a7e3f15106c69eb3e933a142156f.jpeg", "order_goods": [ { "order_id": 2, "goods_name": "木杆铅笔 儿童铅笔", "goods_price": "1000.00", "goods_num": 1, "goods_image": "http://www.likeshopb2cv3.localhost//uploads/images/background/20201210/956e95bc35d0a8005255889036e9aae5.png", "spec_value_str": "默认" } ], "selffetch_shop": { "id": 2, "province": 440000, "city": 440100, "district": 440104, "address": "天上人间", "detailed_address": "广东省广州市越秀区天上人间" } "order_type_desc": "拼团订单", "pay_status_desc": "已支付", "order_status_desc": "待发货", "admin_order_btn": { "detail_btn": 1, "print_btn": 1, "remark_btn": 1, "cancel_btn": 1, "verification_btn": 1, "verification_detail_btn": 0 }, "delivery_type_desc": "门店自提", "verification_status_desc": "待核销", "contact": "木子", "mobile": "17306643985" "verifier_name": "-", "verification_time": "-" } ], "count": 1, "page_no": 1, "page_size": 25, "extend": [] } } ``` **返回参数: |参数名 |类型 |说明 | |:--| |sn |string |订单编号 | |order_type_desc |string |订单类型 | |avatar |string |用户头像 | |nickname |string |用户昵称 | |order_goods |array |商品信息 | |-goods_image |string |商品图片 | |-goods_name |string |商品名称 | |-spec_value_str |string |商品规格 | |-goods_price |string |商品价格 | |-goods_num |string |商品数量 | |selffetch_shop |array |自提门店 | |-detailed_address |string |门店地址 | |order_amount |float |实付金额 | |contact |string |收货人 | |mobile |string |手机号码 | |delivery_type_desc |string |配送方式 | |verification_status_desc |string |核销状态 | |verifier_name |string |核销员 | |verification_time |string |核销时间 | |admin_order_btn |array |订单操作按钮(1-显示;0-隐藏;) | |-detail_btn |int |详情 | |-verification_btn |int |提货核销 | |-verification_btn |int |核销查询 |