简要描述:

  • 获取套餐商品列表

请求域名:

  • https://dev4.yunzshop.com

请求URL:

GET/获取套餐商品列表:route=plugin.goods-package.frontend.package.package.combination-goods

参数:

参数名 是否必须 类型 说明
package_id int 套餐ID

返回示例:

正确时返回:

  {
    "result": 1,
    "msg": "ok",
    "data": [
		 {
			id: 5,
			uniacid: 1,
			combination_id: 1,
			goods_id: 9,
			sort: 1,
			goods: {
				id: 9,
				title: "测试商品2",
				thumb: "https://dev8.yunzmall.com/static/upload/images/1/2021/11/VmcHJ2jN2mCzUr76XR8nMqSjXRql78.jpg",
				has_option: 1,
				status_name: null,
				has_many_specs: [
					{
						id: 174935,
						goods_id: 9,
						title: "测试",
						description: null
					}
				],
				has_many_options: [
					{
						id: 1437739,
						goods_id: 9,
						title: "下体检查",
						thumb: "",
						product_price: "0.00",
						market_price: "0.00",
						stock: 994,
						specs: "778490",
						weight: "0.00"
					}
				]
			}
		},
		{
			id: 6,
			uniacid: 1,
			combination_id: 1,
			goods_id: 13,
			sort: 2,
			goods: {
				id: 13,
				title: "微店2",
				thumb: "https:images/1/2021/11/a0af9bd8c38e764cc2a05ef8e663c4ce.jpeg",
				has_option: 0,
				status_name: null,
				has_many_specs: [ ],
				has_many_options: [ ]
			}
		},
		{
			id: 7,
			uniacid: 1,
			combination_id: 1,
			goods_id: 14,
			sort: 3,
			goods: {
				id: 14,
				title: "招商",
				thumb: "https:images/1/2019/04/B8v9VxJJDV8X00mVuVj9Vmumvv9CMl.jpg",
				has_option: 0,
				status_name: null,
				has_many_specs: [ ],
				has_many_options: [ ]
			}
		},
    ]
}

错误时返回:

  {
    "result": 0,
    "msg": "参数错误"
  }

返回参数说明:

参数名 类型 说明
id int(10) 套餐id
uniacid int(10) 所属公众号ID
combination_id string 商品组合id
goods_id string 商品id
goods obj 商品id

关联参数栏目下的商品列表说明 goods:

goods_lis参数名 类型 说明
id int 商品ID
title string 商品标题
thumb string 商品图片完整路径
has_option int 是否有规格 1是 0否
has_many_params array 商品参数[属性]列表
has_many_specs array 商品规格列表
has_many_options array 商品规格选项表

关联参数说明 has_many_params[]:

参数名 类型 说明
goods_id int 商品ID
title string 参数名
value string 参数值

关联规格说明 has_many_specs []:

参数名 类型 说明
id int 规格ID
goods_id int 商品ID
title string 规格名
description string 规格描述

关联Option说明 has_many_options[]:

参数名 类型 说明
id int 分享ID
goods_id int 商品ID
thumb string 图片
product_price int 价格(分)
market_price int 市场价格(分)
stock int 库存
specs string 规格项ID拼接
weight float 重量

备注:

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