简要描述:
列表请求:
GET/&route=plugin.store-scan-code-meals.frontend.store-dish-goods.list
请求参数说明:
| 参数名 |
类型 |
是否必需 |
说明 |
| page |
否 |
int |
分页 - 页码 |
| store_id |
否 |
int |
门店ID,默认获取当前登录会员 |
返回示例:
正确时返回:
{
"result": 1,
"msg": "获取商品成功",
"data": {
"goods_data": {
"current_page": 1,
"data": [
{
"id": 264,
"title": "点餐商品1",
"is_recommand": 0,
"display_order": 1,
"is_new": 0,
"is_hot": 0,
"is_discount": 0,
"stock": 0,
"price": "99.00",
"real_sales": 11,
"thumb": "http://demo.yun.cn/static/upload/images/6/2024/05/6baa2ebdbbc03f9632011014f6b215d4.jpg",
"status": 1,
"virtual_sales": 0,
"has_option": 0,
"store_name": "顺通石化测试站",
"store_id": 8,
"change_thumb": "http://demo.yun.cn/static/upload/images/6/2024/05/6baa2ebdbbc03f9632011014f6b215d4.jpg"
},
{
"id": 265,
"title": "猪脚",
"is_recommand": 0,
"display_order": 0,
"is_new": 0,
"is_hot": 0,
"is_discount": 0,
"stock": 10,
"price": "111.00",
"real_sales": 9,
"thumb": "http://demo.yun.cn/static/upload/images/6/2024/05/6baa2ebdbbc03f9632011014f6b215d4.jpg",
"status": 1,
"virtual_sales": 0,
"has_option": 1,
"store_name": "顺通石化测试站",
"store_id": 8,
"change_thumb": "http://demo.yun.cn/static/upload/images/6/2024/05/6baa2ebdbbc03f9632011014f6b215d4.jpg"
}
],
"from": 1,
"last_page": 1,
"per_page": 15,
"to": 2,
"total": 2
},
"count": 2,
"store_id": 8,
"goods_stock": 35
}
}
返回参数说明:
| 参数名 |
类型 |
说明 |
| count |
int |
商品数量 |
| goods_data |
obj |
商品分页列表 |
| store_id |
int |
门店ID |
| goods_stock |
int |
商品总库存 |
| goods_data.data参数名 |
类型 |
说明 |
| title |
string |
商品名称 |
| stock |
string |
商品库存 |
| price |
string |
商品价格 |
| real_sales |
string |
商品名称 |
| change_thumb |
string |
商品图片地址 |
| has_option |
int |
是否有规格 |