...
|
...
|
@@ -35,6 +35,7 @@ class Goods extends Api |
|
|
"type": 1,
|
|
|
"t_id": 1,
|
|
|
"file": "http://jinglong.springchunjia.cn/uploads/20191127/05d216e117e11bd3de352c155b42eaaa.mp4",//视频路径
|
|
|
"image": "http://jinglong.springchunjia.cn/uploads/20191127/05d216e117e11bd3de352c155b42eaaa.jpg",//缩略图路径
|
|
|
"name": "MONENT 动感系列",//商品名称
|
|
|
"name_en": "Monent dynamic series",//商品名称(英文)
|
|
|
"sale_price": 2599,//销售价格
|
...
|
...
|
@@ -80,7 +81,7 @@ class Goods extends Api |
|
|
$this->error($validate->getError());
|
|
|
}
|
|
|
|
|
|
$res = Common::findSoftWhereData('goods',['id'=>$goods_id],'type_name,is_design,is_recommend,sort,image,createtime,updatetime,deletetime,flag,hots,sales',true);
|
|
|
$res = Common::findSoftWhereData('goods',['id'=>$goods_id],'type_name,is_design,is_recommend,sort,createtime,updatetime,deletetime,flag,hots,sales',true);
|
|
|
if($res){
|
|
|
if($res['file']){
|
|
|
//图片取视频帧
|
...
|
...
|
@@ -97,6 +98,7 @@ class Goods extends Api |
|
|
}
|
|
|
$res['style'] = explode('|',$res['style']);
|
|
|
$res['tag'] = explode('|',$res['tag']);
|
|
|
$res['image'] = $this->auth->absolutionUrlOne($res['image']);
|
|
|
//所属品牌分类
|
|
|
if($res['type'] == 1){
|
|
|
//查询所属品牌
|
...
|
...
|
|