企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
#### 列表 ~~~[api] get:/admin/stores/audit/index number:isAudit=0#是否审核,0=>未审核,1=>审核通过,2=>审核驳回 number:p=1#当前页数 number:ps=20#分页大小 <<< success { "code": 1, "msg": "", "time": "2018-06-11 00:38:19", "data": [ { "id": 1, "dealer_id": 1, "cate_id": 1, "type": 1, "name": "stores1", "thumb": "http://oss.dgyouduo.com/static/img/no-image.png", "banner": [ "http://oss.dgyouduo.com/static/img/no-image-16x10.png" ], "notice": "欢迎光临,很高兴为您服务", "mobile": "18666868868", "realname": "", "idcard_number": "", "idcard_image": "", "business_license_number": "", "business_license_image": "", "industry_additional_image": "", "province": 0, "city": 0, "district": 0, "twon": 0, "address": "", "longitude": "", "latitude": "", "business_hours_start": "7", "business_hours_end": "24", "template_style": 1, "delivery_scope": 1, "delivery_setting": "", "delivery_time": 0, "sort": 0, "is_support_two": 0, "is_support_express": 1, "is_support_self_pickup": 0, "is_support_delivery": 0, "is_support_make_delivery": 0, "is_self_delivery": 0, "is_audit": 0, "status": 1, "created_at": "2018-06-10 23:47:31", "updated_at": "2018-06-11 00:13:41", "category": { "id": 1, "parent_id": 0, "parent_id_path": "0_1", "level": 1, "type": 1, "name": "store1", "thumb": "http://oss.dgyouduo.com/static/img/no-image.png", "template_style": 1, "delivery_scope": 1, "delivery_setting": "", "delivery_time": 0, "sort": 0, "is_support_two": 0, "is_support_express": 1, "is_support_self_pickup": 0, "is_support_delivery": 0, "is_support_make_delivery": 0, "is_self_delivery": 0, "status": 1, "created_at": "2018-06-10 22:26:52", "updated_at": "2018-06-10 22:31:43", "status_text": "正常" }, "dealer": { "id": 1, "username": "dealer1", "mobile": "18666868866", "sort": 0, "status": 1, "created_at": "2016-01-01 00:00:00", "updated_at": "2018-06-10 22:16:56", "status_text": "正常" }, "is_audit_text": "未审核", "status_text": "正常" } ], "_meta": { "totalCount": 1, "pageCount": 1, "currentPage": 1, "perPage": 20 } } ~~~ #### 通过 ~~~[api] post:/admin/stores/audit/approved/id/:id <<< success { "code": 1, "msg": "success", "time": "2018-01-12 20:55:58", "data": [] } ~~~ #### 批量通过 ~~~[api] post:/admin/stores/audit/approveds *array:ids#ID集合 <<< success { "code": 1, "msg": "success", "time": "2018-01-12 20:55:58", "data": [] } <<< example { "ids": [1, 2] } ~~~ #### 驳回 ~~~[api] post:/admin/stores/audit/rejected/id/:id <<< success { "code": 1, "msg": "success", "time": "2018-01-13 12:59:34", "data": [] } ~~~ #### 批量驳回 ~~~[api] post:/admin/stores/audit/rejecteds *array:ids#ID集合 <<< success { "code": 1, "msg": "success", "time": "2018-01-12 20:55:58", "data": [] } <<< example { "ids": [1, 2] } ~~~ #### 日志 ~~~[api] get:/admin/stores/audit/log number:p=1#当前页数 number:ps=20#分页大小 <<< success { "code": 1, "msg": "", "time": "2018-06-11 01:15:27", "data": [ { "id": 4, "stores_id": 4, "admin_id": 1, "operate": 2, "status": 1, "created_at": "2018-06-11 01:11:48", "updated_at": "2018-06-11 01:11:48", "stores": { "id": 4, "name": "stores4", "is_audit": 2, "status": 1, "is_audit_text": "审核驳回", "status_text": "正常" }, "admin": { "id": 1, "username": "admin", "mobile": "18666868868", "sort": 0, "status": 1, "created_at": "2016-01-01 00:00:00", "updated_at": "2018-06-09 12:42:25", "status_text": "正常" }, "operate_text": "审核驳回", "status_text": "正常" } ], "_meta": { "totalCount": 1, "pageCount": 1, "currentPage": 1, "perPage": 20 } } ~~~ #### 日志删除 ~~~[api] post:/admin/stores/audit/logDelete/id/:id <<< success { "code": 1, "msg": "success", "time": "2018-01-13 20:28:44", "data": [] } ~~~ #### 日志批量删除 ~~~[api] post:/admin/stores/audit/logDeletes *array:ids#ID集合 <<< success { "code": 1, "msg": "success", "time": "2018-01-13 20:28:44", "data": [] } <<< example { "ids": [1, 2] } ~~~