Browse Source

手机主题

wufeng 2 years ago
parent
commit
f9c6f530a9
3 changed files with 47 additions and 3 deletions
  1. 12 3
      app/mobile/controller/Account.php
  2. 34 0
      app/mobile/logic/AccountLogic.php
  3. 1 0
      app/mobile/route/app.php

+ 12 - 3
app/mobile/controller/Account.php

@@ -32,20 +32,29 @@ class Account extends BaseController
     }
 
     //详情
-    public function info(){
+    public function info()
+    {
         return AccountLogic::info();
     }
 
     //省市区编码
-    public function area(){
+    public function area()
+    {
         $parent_code = $this->request->post('parent_code', '');
         return CommonLogic::getAddr($parent_code);
     }
 
     //视频列表
-    public function getVideoList(){
+    public function getVideoList()
+    {
         $param = $this->request->only(['page' => 1, 'size' => 10], 'post');
         return AccountLogic::getVideoList($param);
     }
 
+    //手机主题
+    public function theme()
+    {
+        return AccountLogic::theme();
+    }
+
 }

+ 34 - 0
app/mobile/logic/AccountLogic.php

@@ -5,6 +5,8 @@ namespace app\mobile\logic;
 use app\model\AccountModel;
 use app\model\AccountTokenModel;
 use app\model\CommonModel;
+use app\model\GroupModel;
+use app\model\ThemeModel;
 use app\model\VideoModel;
 use think\Exception;
 use think\facade\Config;
@@ -113,5 +115,37 @@ class AccountLogic extends BaseLogic
         return json_show(CommonModel::$success, '获取视频列表成功', ['count' => $count, 'list' => $list]);
     }
 
+    //手机主题
+    public static function theme(): Json
+    {
+        $group_id = GroupModel::where(['is_del' => CommonModel::$del_normal, 'company_id' => self::$company_id, 'card_id' => self::$card_id])
+            ->value('id', 0);
+        if (!$group_id) return json_show(CommonModel::$error_param, '该账户所对应的分组不存在');
+
+        $rs = ThemeModel::field('id,code')
+            ->where(['is_del' => CommonModel::$del_normal, 'group_id' => $group_id, 'status' => CommonModel::$status_normal])
+            ->append(['modular'])
+            ->withAttr('modular', function ($val, $data) {
+                return Db::name('theme_modular')
+                    ->field('id,title,type')
+                    ->where(['is_del' => CommonModel::$del_normal, 'theme_id' => $data['id'], 'status' => CommonModel::$status_normal])
+                    ->order(['addtime' => 'desc', 'id' => 'desc'])
+                    ->append(['data'])
+                    ->withAttr('data', function ($v, $d) {
+                        return Db::name('theme_modular_data')
+                            ->field('id,img,jump_type,jump_param,good_name,good_id,style_type')
+                            ->where(['is_del' => CommonModel::$del_normal, 'theme_modular_id' => $d['id']])
+                            ->order(['addtime' => 'desc', 'id' => 'desc'])
+                            ->select()
+                            ->toArray();
+                    })
+                    ->select()
+                    ->toArray();
+            })
+            ->findOrEmpty()
+            ->toArray();
+        return empty($rs) ? json_show(CommonModel::$error_param, '该手机主题不存在') : json_show(CommonModel::$success, '获取手机主题成功', $rs);
+    }
+
 
 }

+ 1 - 0
app/mobile/route/app.php

@@ -7,6 +7,7 @@ Route::rule('logout', 'Account/logout');//登出
 Route::rule('info', 'Account/info');//账户详情
 Route::rule('video', 'Account/getVideoList');//视频列表
 Route::rule('area', 'Account/area');//省市区编码
+Route::rule('theme', 'Account/theme');//手机主题
 
 //【地址】
 Route::rule('addrList', 'Addr/list');//列表