简要描述:

搜索供应商分类

请求域名:

  • http://xx.com

请求URL:

plugin.decorate.admin.decorate-common.search-supplier

参数:

参数名 是否必须 类型 说明
page int 分页 (每页固定20条)
username string 用户名 (搜索使用,模糊匹配)

返回示例:

正确时返回:

{
    "result": 1,
    "msg": "成功",
    "data": {
        "total": 14,
        "per_page": 2,
        "current_page": 1,
        "last_page": 7,
        "next_page_url": "http://www.yzdev8.com/addons/yun_shop/api.php?page=2",
        "prev_page_url": null,
        "from": 1,
        "to": 2,
        "data": [
            {
                "id": 17,
                "username": "18933970006",
                "logo": "images/1/2020/06/DQ8QwKHVhW0Ms048ms33844CqFwV20.jpg",
                "member_id": 163932,
                "mobile": "18933970006",
                "store_name": "null",
                "supplier_id": 17
            },
            {
                "id": 16,
                "username": "18933970003",
                "logo": "images/1/2020/06/Z88OQBLP8Pbb2zNz9iPIBx9p88H2i8.jpg",
                "member_id": 163789,
                "mobile": "18933973453",
                "store_name": "null",
                "supplier_id": 16
            }
        ]
    }
}

错误时返回:

{
    "result": 0,
    "msg": "暂无数据",
    "data": []
}

返回参数说明:

参数名 类型 说明
data[total] int 数据总条数
data[per_page] int 每页显示多少条数据
data[current_page] int 当前页
data[data][id] int 供应商id
data[data][username] int 登录账号
data[data][logo] string LOGO
data[data][member_id] int 会员id
data[data][mobile] int 电话
data[data][store_name] string 店铺名称

备注: