File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -76,3 +76,46 @@ POST /v1/coin/task/my-task-info
7676 " msg" : " success" // 返回消息
7777}
7878```
79+
80+ # 商品详情
81+
82+ ### 获取
83+ POST /v1/coin/shop/product-detail
84+
85+ 请求头:
86+
87+ | 名称| 必须| 备注|
88+ | -----| -----| -----|
89+ | token| 是| 无|
90+
91+ 请求体:
92+ '''JSONC
93+ {
94+ "id": 1 // 商品id
95+ }
96+ '''
97+
98+ 响应体:
99+ ``` JSONC
100+ {
101+ " code" : 1 , // 请求状态码,1为正常
102+ " data" : {
103+ " product" : {
104+ " id" : 1 , // 商品id
105+ " type" : 1 ,
106+ " cycle" : 7 , // 会员持续时间(持续7天
107+ " info" : " 7" ,
108+ " name" : " 【云湖】会员7天" , // 商品名
109+ " imageUrls" : " [\" https://chat-img.jwznb.com/999955a351c67b761ed078dc40d28ede.png\" ]" , // 商品图片url,为json数组,需转意后才可使用
110+ " price" : 100 , // 价格(单位为金币)
111+ " priceVip" : 90 , // vip专项价格
112+ " stock" : 49 , // 商品库存
113+ " sale" : 0 , // 已经出售了0件
114+ " description" : " 云湖会员7天,享受所有会员服务\r\n\r\n ### **商品不定期补充库存,请留意全员群及官方消息**\r\n ##### 注意事项\r\n 1. 该商品每7天可兑换一次\r\n 2. 兑换后直接开通或续费会员,无额外操作\r\n 3. 虚拟商品,兑换后不支持退换\r\n 4. 如有疑问联系官方客服" , // 商品描述
115+ " delTime" : 0 , // 商品下架时间
116+ " createTime" : 0 , // 商品上架时间
117+ " lastUpdate" : 0 // 商品更新时间
118+ }
119+ },
120+ " msg" : " success" // 返回消息
121+ }
You can’t perform that action at this time.
0 commit comments