|
@@ -138,6 +138,7 @@ class ProductService extends Service
|
|
|
$model->retail_price = $data['retail_price'] ?? 0;
|
|
|
$model->mark = $data['mark'] ?? '';
|
|
|
$model->state = $data['state'] ?? 0;
|
|
|
+ $model->introduction = $data['introduction'] ?? '';
|
|
|
$model->save();
|
|
|
|
|
|
$time = time();
|
|
@@ -232,6 +233,7 @@ class ProductService extends Service
|
|
|
$model->retail_price = $data['retail_price'] ?? 0;
|
|
|
$model->mark = $data['mark'] ?? '';
|
|
|
$model->state = $data['state'] ?? 0;
|
|
|
+ $model->introduction = $data['introduction'] ?? '';
|
|
|
$model->crt_id = $user['id'];
|
|
|
$model->save();
|
|
|
|