🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
#### 列表 ~~~[api] get:/dealer/promotion/goods_seckill/index *number:storesId#门店ID number:p=1#当前页数 number:ps=20#分页大小 <<< success { "code": 1, "msg": "", "time": "2018-08-17 06:24:46", "data": [ { "id": 1, "dealer_id": 1, "stores_id": 2, "goods_id": 32, "price": "2.50", "inventory": 1000, "max_buy_number": 100, "status": 1, "created_at": "2018-08-17 05:57:16", "updated_at": "2018-08-17 06:15:41", "start_at": "2016-01-01 00:00:00", "end_at": "2016-01-01 00:00:00", "goods": { "id": 32, "dealer_id": 2, "stores_id": 2, "cate_id": 30, "brands_id": 30, "express_id": 0, "template_id": 5, "sn": "20180813162223284103", "name": "商品五", "weight": 0, "volume": 0, "thumb": "http://dgyouduo.oss-cn-shenzhen.aliyuncs.com/uploads/2018/08/WeJqEtDugxl1bKY5bHwFEQvtqwdiySNL.png", "banner": "a:1:{i:0;s:97:\"http://dgyouduo.oss-cn-shenzhen.aliyuncs.com/uploads/2018/08/w9jMZITTAEvaInXLuFi7VMpe5CxuuaMA.png\";}", "summary": "商品五", "content": "商品五", "price": "5.00", "market_price": "5.00", "inventory": 494, "view_count": 0, "sale_count": 6, "sort": 0, "is_free_shipping": 1, "is_hot": 0, "is_new": 0, "is_real": 1, "is_sale": 1, "status": 1, "created_at": "2018-08-11 11:48:46", "updated_at": "2018-08-14 16:47:39", "saled_at": "2016-01-01 00:00:00", "status_text": "正常" }, "status_text": "正常" } ], "_meta": { "totalCount": 1, "pageCount": 1, "currentPage": 1, "perPage": 20 } } ~~~ #### 详情 ~~~[api] get:/dealer/promotion/goods_seckill/retrieve/id/:id <<< success { "code": 1, "msg": "", "time": "2018-08-17 06:22:23", "data": { "id": 1, "dealer_id": 1, "stores_id": 2, "goods_id": 32, "price": "2.50", "inventory": 1000, "max_buy_number": 100, "status": 1, "created_at": "2018-08-17 05:57:16", "updated_at": "2018-08-17 06:15:41", "start_at": "2016-01-01 00:00:00", "end_at": "2016-01-01 00:00:00", "goods": { "id": 32, "dealer_id": 2, "stores_id": 2, "cate_id": 30, "brands_id": 30, "express_id": 0, "template_id": 5, "sn": "20180813162223284103", "name": "商品五", "weight": 0, "volume": 0, "thumb": "http://dgyouduo.oss-cn-shenzhen.aliyuncs.com/uploads/2018/08/WeJqEtDugxl1bKY5bHwFEQvtqwdiySNL.png", "banner": "a:1:{i:0;s:97:\"http://dgyouduo.oss-cn-shenzhen.aliyuncs.com/uploads/2018/08/w9jMZITTAEvaInXLuFi7VMpe5CxuuaMA.png\";}", "summary": "商品五", "price": "5.00", "market_price": "5.00", "inventory": 494, "view_count": 0, "sale_count": 6, "sort": 0, "is_free_shipping": 1, "is_hot": 0, "is_new": 0, "is_real": 1, "is_sale": 1, "status": 1, "created_at": "2018-08-11 11:48:46", "updated_at": "2018-08-14 16:47:39", "saled_at": "2016-01-01 00:00:00", "status_text": "正常" }, "status_text": "正常" } } ~~~ #### 创建 > 商品秒杀不可同时参与订单满减与使用优惠券 > 商品秒杀可使用红包 ~~~[api] post:/dealer/promotion/goods_seckill/create *number:stores_id#门店ID *number:goods_id#商品ID *number:price#价格 *number:inventory#库存 *number:max_buy_number#最大购买数量 *string:start_at#开始时间 *string:end_at#结束时间 number:status=1#状态,0=>禁用,1=>启用 <<< success { "code": 1, "msg": "success", "time": "2018-08-17 06:12:49", "data": [] } ~~~ #### 更新 ~~~[api] post:/dealer/promotion/goods_seckill/update/id/:id number:price#价格 number:inventory#库存 number:max_buy_number#最大购买数量 string:start_at#开始时间 string:end_at#结束时间 number:status=1#状态,0=>禁用,1=>启用 <<< success { "code": 1, "msg": "success", "time": "2018-08-17 06:12:49", "data": [] } ~~~ #### 删除 ~~~[api] post:/dealer/promotion/goods_seckill/delete/id/:id <<< success { "code": 1, "msg": "success", "time": "2018-08-17 06:12:49", "data": [] } ~~~