|
...
|
...
|
@@ -439,7 +439,7 @@ class ProductLogic extends BaseLogic |
|
|
|
'category_id' => $category_id,
|
|
|
|
'keyword_id' => $keyword_id,
|
|
|
|
'intro' => $data[5] ?? '',
|
|
|
|
'content' => $data[6] ?? '',
|
|
|
|
'content' => $data[6] ? preg_replace('/[\x{10000}-\x{10FFFF}]/u','',$data[6]) : '',
|
|
|
|
'seo_mate' => Arr::a2s($seo_mate),
|
|
|
|
'created_uid' => $user_id,
|
|
|
|
'status' => Product::STATUS_ON
|
...
|
...
|
|