|
@@ -477,6 +477,16 @@ class Goods extends BaseModel
|
|
|
return $this->error('上传图片上限为五张','上传图片上限为五张');
|
|
|
}
|
|
|
}
|
|
|
+ public function goods_sku($sku_data){
|
|
|
+ $sku = json_decode($sku_data, true);
|
|
|
+ foreach ($sku as $item){
|
|
|
+ if(empty($item['price'])||$item['price']<1) {
|
|
|
+ return $this->error('请正确填写规格信息');
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
|
|
|
/**
|
|
|
* 获取商品详情
|