Browse Source

格式化

wufeng 2 years ago
parent
commit
bcc8a4f285
3 changed files with 2 additions and 4 deletions
  1. 1 1
      app/admin/config/validate_rules.php
  2. 1 1
      app/admin/logic/ThemeLogic.php
  3. 0 2
      app/model/ThemeModel.php

+ 1 - 1
app/admin/config/validate_rules.php

@@ -219,7 +219,7 @@ return [
     ],
 
     //手机主题数据
-    'ThemeDataAdd'=>[
+    'ThemeDataAdd' => [
         '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',

+ 1 - 1
app/admin/logic/ThemeLogic.php

@@ -312,7 +312,7 @@ class ThemeLogic extends BaseLogic
                     ]);
             }
             if ($ins) {
-                
+
                 Db::name('theme_modular_data')->insertAll($ins);
             }
 

+ 0 - 2
app/model/ThemeModel.php

@@ -21,6 +21,4 @@ class ThemeModel extends Model
     public static $jump_type_external = 3;
 
 
-
-
 }