|
@@ -233,40 +233,59 @@ class ThemeLogic extends BaseLogic
|
|
|
'updatetime' => $date,
|
|
|
]);
|
|
|
|
|
|
+ $all_theme_modular_id = Db::name('theme_modular')
|
|
|
+ ->where([
|
|
|
+ 'theme_id' => $data['id'],
|
|
|
+ 'is_del' => CommonModel::$del_normal,
|
|
|
+ ])->column('id');
|
|
|
+
|
|
|
+ Db::name('theme_modular')
|
|
|
+ ->where('is_del', CommonModel::$del_normal)
|
|
|
+ ->whereIn('id', $all_theme_modular_id)
|
|
|
+ ->update([
|
|
|
+ 'is_del' => CommonModel::$del_deleted,
|
|
|
+ 'updatetime' => $date,
|
|
|
+ ]);
|
|
|
+
|
|
|
+ Db::name('theme_modular_data')
|
|
|
+ ->where('is_del', CommonModel::$del_normal)
|
|
|
+ ->whereIn('theme_modular_id', $all_theme_modular_id)
|
|
|
+ ->update([
|
|
|
+ 'is_del' => CommonModel::$del_deleted,
|
|
|
+ 'updatetime' => $date,
|
|
|
+ ]);
|
|
|
+
|
|
|
//模块验证规则
|
|
|
$val_modular = Validate::rule([
|
|
|
- 'id|主题模块id' => 'require|number|gt:0',
|
|
|
'type|模块类型' => 'require|number|in:' . ThemeModel::$type_advantage . ',' . ThemeModel::$type_banner . ',' . ThemeModel::$type_exhibition . ',' . ThemeModel::$type_propaganda,
|
|
|
'status|状态' => 'require|number|in:' . CommonModel::$status_normal . ',' . CommonModel::$status_disable,
|
|
|
'title|模块名称' => 'requireIf:type,' . ThemeModel::$type_advantage . '|requireIf:type,' . ThemeModel::$type_exhibition . '|max:255',
|
|
|
'data|模块数据' => 'require|array|max:100',
|
|
|
]);
|
|
|
-
|
|
|
//数据验证规则
|
|
|
+
|
|
|
$val_data = Validate::rule([
|
|
|
- 'id|主题模块数据id' => 'number',
|
|
|
'img|图片' => 'require|max:255',
|
|
|
'jump_type|跳转类型' => 'require|number|in:' . ThemeModel::$jump_type_external . ',' . ThemeModel::$jump_type_inside . ',' . ThemeModel::$jump_type_no,
|
|
|
'jump_param|跳转参数' => 'max:255',
|
|
|
- 'good_id|商品id' => 'number',
|
|
|
- 'title|模块数据名称' => 'requireIf:type,' . ThemeModel::$type_propaganda . '|max:255',
|
|
|
+ 'good_id|商品id' => 'number|gt:0',
|
|
|
]);
|
|
|
-
|
|
|
- $del = $ins = [];
|
|
|
-
|
|
|
foreach ($data['modular'] as $modular) {
|
|
|
|
|
|
if (!$val_modular->check($modular)) throw new Exception('模块参数有误,' . $val_modular->getError());
|
|
|
|
|
|
//模块记录表
|
|
|
- Db::name('theme_modular')
|
|
|
- ->where(['is_del' => CommonModel::$del_normal, 'id' => $modular['id']])
|
|
|
- ->update([
|
|
|
- 'title' => $modular['title'],
|
|
|
- 'status' => $modular['status'],
|
|
|
- 'updatetime' => $date,
|
|
|
- ]);
|
|
|
+ $modular_id = Db::name('theme_modular')->insertGetId([
|
|
|
+ 'theme_id' => $data['id'],
|
|
|
+ 'title' => $modular['title'],
|
|
|
+ 'type' => $modular['type'],
|
|
|
+ 'status' => $modular['status'],
|
|
|
+ 'is_del' => CommonModel::$del_normal,
|
|
|
+ 'addtime' => $date,
|
|
|
+ 'updatetime' => $date,
|
|
|
+ ]);
|
|
|
|
|
|
+ $insert_data = [];
|
|
|
$da = $modular['data'];
|
|
|
|
|
|
$goods = GoodModel::whereIn('id', array_column($da, 'good_id'))
|
|
@@ -279,50 +298,28 @@ class ThemeLogic extends BaseLogic
|
|
|
|
|
|
if (!$val_data->check($v)) throw new Exception('模块数据参数有误,' . $val_data->getError());
|
|
|
|
|
|
- if (isset($v['id'])) {
|
|
|
- if ($v['is_del'] == CommonModel::$del_deleted) $del[] = $v['id'];
|
|
|
- else {
|
|
|
- Db::name('theme_modular_data')
|
|
|
- ->where(['is_del' => CommonModel::$del_normal, 'id' => $v['id']])
|
|
|
- ->update([
|
|
|
- 'img' => $v['img'],
|
|
|
- 'jump_type' => $v['jump_type'],
|
|
|
- 'jump_param' => $v['jump_param'],
|
|
|
- 'good_name' => $modular['type'] == ThemeModel::$type_exhibition ? $goods[$v['good_id']] ?? '' : '',
|
|
|
- 'good_id' => $v['good_id'],
|
|
|
- 'style_type' => $v['style_type'],
|
|
|
- 'title' => $v['title'],
|
|
|
- 'updatetime' => $date,
|
|
|
- ]);
|
|
|
-
|
|
|
- }
|
|
|
- } else {
|
|
|
- $ins[] = array_merge($v, [
|
|
|
- 'theme_modular_id' => $modular['id'],
|
|
|
- 'is_del' => CommonModel::$del_normal,
|
|
|
- 'good_name' => $modular['type'] == ThemeModel::$type_exhibition ? $goods[$v['good_id']] ?? '' : '',
|
|
|
- 'addtime' => $date,
|
|
|
- 'updatetime' => $date,
|
|
|
- ]);
|
|
|
- }
|
|
|
+ $insert_data[] = [
|
|
|
+ 'theme_modular_id' => $modular_id,
|
|
|
+ 'img' => $v['img'],
|
|
|
+ 'jump_type' => $v['jump_type'],
|
|
|
+ 'jump_param' => $v['jump_param'],
|
|
|
+ 'title' => $v['title'] ?? '',
|
|
|
+ 'good_id' => $v['good_id'],
|
|
|
+ 'style_type' => $v['style_type'],
|
|
|
+ 'good_name' => $modular['type'] == ThemeModel::$type_exhibition ? $goods[$v['good_id']] ?? '' : '',
|
|
|
+ 'is_del' => CommonModel::$del_normal,
|
|
|
+ 'addtime' => $date,
|
|
|
+ 'updatetime' => $date,
|
|
|
+ ];
|
|
|
|
|
|
}
|
|
|
|
|
|
- }
|
|
|
+ //模块数据记录表
|
|
|
+ Db::name('theme_modular_data')->insertAll($insert_data);
|
|
|
|
|
|
- if ($del) {
|
|
|
- Db::name('theme_modular_data')
|
|
|
- ->where(['is_del' => CommonModel::$del_normal])
|
|
|
- ->whereIn('id', $del)
|
|
|
- ->update([
|
|
|
- 'is_del' => CommonModel::$del_deleted,
|
|
|
- 'updatetime' => $date,
|
|
|
- ]);
|
|
|
- }
|
|
|
- if ($ins) {
|
|
|
- Db::name('theme_modular_data')->insertAll($ins);
|
|
|
}
|
|
|
|
|
|
+
|
|
|
Db::commit();
|
|
|
return json_show(CommonModel::$success, '修改手机主题成功');
|
|
|
} catch (Exception $exception) {
|