简要描述:

  • 获取商品列表列表

请求URL:

GET/plugin.appointment.frontend.project-goods.get-goods-list

参数:

参数名 是否必须 类型 说明
title string 商品名称
status int 0下架,1上架

返回示例:

正确时返回:

{
    "result": 1,
    "msg": "ok",
    "data": {
        "current_page": 1,
        "data": [
            {
                "id": 93471,
                "title": "asas",
                "status": 0,
                "stock": 333333,
                "thumb": "http://www.shop777.com/static/upload/images/1/2024/01/241fed586ea860e69064ce029009144c.jpg",
                "price": "0.00",
                "create_name": "aaa",
                "status_name": "下架",
            }
        ],
        "first_page_url": "http://www.shop777.com/addons/yun_shop/api.php?page=1",
        "from": 1,
        "last_page": 1,
        "last_page_url": "http://www.shop777.com/addons/yun_shop/api.php?page=1",
        "next_page_url": null,
        "path": "http://www.shop777.com/addons/yun_shop/api.php",
        "per_page": 15,
        "prev_page_url": null,
        "to": 1,
        "total": 1
    }
}

错误时返回:

  

返回参数说明:

参数名 类型 说明
id int 商品id
title string 商品名称
status int 状态1上架0下架
status_name string 状态名称
thumb string 图片路径
price string 价格
total int 商品总数

备注:

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