|
@@ -97,7 +97,6 @@ class ThemeLogic extends BaseLogic
|
|
|
'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|gt:0',
|
|
|
- 'title|模块数据名称名称' => 'requireIf:type,' . ThemeModel::$type_propaganda . '|max:255',
|
|
|
]);
|
|
|
foreach ($data['modular'] as $modular) {
|
|
|
|
|
@@ -127,14 +126,21 @@ class ThemeLogic extends BaseLogic
|
|
|
|
|
|
if (!$val_data->check($v)) throw new Exception('模块数据参数有误,' . $val_data->getError());
|
|
|
|
|
|
- $v['theme_modular_id'] = $modular_id;
|
|
|
- $v['is_del'] = CommonModel::$del_normal;
|
|
|
- $v['good_name'] = $modular['type'] == ThemeModel::$type_exhibition ? $goods[$v['good_id']] ?? '' : '';
|
|
|
- $v['addtime'] = $date;
|
|
|
- $v['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,
|
|
|
+ ];
|
|
|
|
|
|
- $insert_data = array_merge($insert_data, $da);
|
|
|
+ }
|
|
|
|
|
|
//模块数据记录表
|
|
|
Db::name('theme_modular_data')->insertAll($insert_data);
|
|
@@ -145,7 +151,7 @@ class ThemeLogic extends BaseLogic
|
|
|
return json_show(CommonModel::$success, '添加手机主题成功');
|
|
|
} catch (Exception $exception) {
|
|
|
Db::rollback();
|
|
|
- return json_show(CommonModel::$error_param, '添加手机主题失败,' . $exception->getMessage());
|
|
|
+ return json_show(CommonModel::$error_param, '添加手机主题失败,' . $exception->getMessage() . '|' . $exception->getFile() . '|' . $exception->getLine());
|
|
|
}
|
|
|
|
|
|
}
|