瀏覽代碼

获取报错

zhangxiaobin 1 年之前
父節點
當前提交
d7f249c335
共有 2 個文件被更改,包括 4 次插入0 次删除
  1. 3 0
      application/api/controller/Party.php
  2. 1 0
      application/common/service/RoomService.php

+ 3 - 0
application/api/controller/Party.php

@@ -398,6 +398,9 @@ class Party extends Common
                     throw new Exception($resultInfo['msg']);
                 }
             }
+            if (!isset($resultInfo['data'])) {
+                $resultInfo['data'] = [];
+            }
             $this->success("获取成功!",$resultInfo['data']);
         } catch (Exception $e) {;
             $this->error($e->getMessage());

+ 1 - 0
application/common/service/RoomService.php

@@ -1,6 +1,7 @@
 <?php
 
 namespace app\common\service;
+use think\Db;
 use think\Exception;
 use Redis;
 use app\common\service\TenimService;