Browse Source

手机主题优化

wufeng 2 years ago
parent
commit
9a54efbb91
2 changed files with 10 additions and 6 deletions
  1. 7 6
      app/admin/logic/ThemeLogic.php
  2. 3 0
      app/mobile/logic/ExchangeLogic.php

+ 7 - 6
app/admin/logic/ThemeLogic.php

@@ -87,7 +87,7 @@ class ThemeLogic extends BaseLogic
             $val_modular = Validate::rule([
                 '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 . '|requireIf:type,' . ThemeModel::$type_propaganda . '|max:255',
+                'title|模块名称' => 'requireIf:type,' . ThemeModel::$type_advantage . '|requireIf:type,' . ThemeModel::$type_exhibition . '|max:255',
                 'data|模块数据' => 'require|array|max:100',
             ]);
             //数据验证规则
@@ -96,7 +96,8 @@ class ThemeLogic extends BaseLogic
                 '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|gt:0'
+                'good_id|商品id' => 'number|gt:0',
+                'title|模块数据名称名称' => 'requireIf:type,' . ThemeModel::$type_propaganda . '|max:255',
             ]);
             foreach ($data['modular'] as $modular) {
 
@@ -231,7 +232,7 @@ class ThemeLogic extends BaseLogic
                 '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 . '|requireIf:type,' . ThemeModel::$type_propaganda . '|max:255',
+                'title|模块名称' => 'requireIf:type,' . ThemeModel::$type_advantage . '|requireIf:type,' . ThemeModel::$type_exhibition . '|max:255',
                 'data|模块数据' => 'require|array|max:100',
             ]);
 
@@ -241,7 +242,8 @@ class ThemeLogic extends BaseLogic
                 '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'
+                'good_id|商品id' => 'number',
+                'title|模块数据名称' => 'requireIf:type,' . ThemeModel::$type_propaganda . '|max:255',
             ]);
 
             $del = $ins = [];
@@ -265,7 +267,6 @@ class ThemeLogic extends BaseLogic
                     ->where('is_del', CommonModel::$del_normal)
                     ->column('good_name', 'id');
 
-
                 foreach ($da as &$v) {
 
                     if ($modular['type'] == ThemeModel::$type_exhibition) $val_data->append('good_id', 'require');
@@ -284,6 +285,7 @@ class ThemeLogic extends BaseLogic
                                     '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,
                                 ]);
 
@@ -312,7 +314,6 @@ class ThemeLogic extends BaseLogic
                     ]);
             }
             if ($ins) {
-
                 Db::name('theme_modular_data')->insertAll($ins);
             }
 

+ 3 - 0
app/mobile/logic/ExchangeLogic.php

@@ -50,6 +50,9 @@ class ExchangeLogic extends BaseLogic
             ->withAttr('good_param', function ($val) {
                 return json_decode($val, true);
             })
+            ->withAttr('good_img', function ($val) {
+                return explode(',',$val);
+            })
             ->findOrEmpty()
             ->toArray();