简要描述:

请求域名:

  • http://xx.com

请求URL:

GET/plugin.store-cashier.admin.store-apply.get-list

参数:

参数名 是否必须 类型 说明
page int 页数
member_id int 店主会员id
member_info string 店主昵称/姓名/手机号
store_name string 门店名称
status string 入驻状态(传字符型),"0"待审核,"1"通过
category_id int 门店分类
province_id int 省ID
city_id int 市ID
start_time string 起始时间
end_time string 终止时间

返回示例:

正确时返回:

{
    "result": 1,
    "msg": "",
    "data": {
        "count": {
            "total": 2,
            "wait": 0,
            "success": 0
        },
        "list": {
            "total": 2,
            "per_page": 20,
            "current_page": 1,
            "last_page": 1,
            "next_page_url": null,
            "prev_page_url": null,
            "from": 1,
            "to": 2,
            "data": [
                {
                    "id": 3,
                    "uid": 78,
                    "realname": "东方",
                    "mobile": "15220038141",
                    "status": 1,
                    "day": "2017-10-30",
                    "time": "10:34:42",
                    "member_avatar": "images/3/2018/01/u1TuWe8TE9G8ubSxBecU38E9WP8pbG.jpg",
                    "member_nickanme": "13148513759",
                    "member_id": "13148513759",
                    "province": "广东省",
                    "city": "广州市",
                    "category": "分类一",
                    "storename": "ceshi"
                },
                {
                    "id": 1,
                    "uid": 73,
                    "realname": "12",
                    "mobile": "15220038141",
                    "status": 1,
                    "day": "2017-10-16",
                    "time": "17:50:35",
                    "member_avatar": "images/3/2018/01/u1TuWe8TE9G8ubSxBecU38E9WP8pbG.jpg",
                    "member_nickanme": "13148513752",
                    "member_id": "13148513752",
                    "province": "内蒙古自治区",
                    "city": "赤峰市",
                    "category": "测试1",
                    "storename": "1122测试"
                }
            ]
        }
    }
}

错误时返回:

  {
    "result": 0,
    "msg": "",
    "data": []
}

返回参数说明:

参数名 类型 说明
count array 统计数组
total int 申请总数
success int 审核通过
wait int 待审核
参数名 类型 说明
list array 门店列表数组
id int 申请id
day string 申请时间--日期
time string 申请时间--时分秒
uid int 申请会员ID
member_avatar string 申请会员头像
member_nickanme string 申请会员昵称
realname string 姓名
mobile string 手机号
province string
city string
store_name string 门店名称
category_name string 门店分类
status int 0待审核,1通过

备注:

  • 更多返回错误代码请看首页的错误代码描述