正在显示
1 个修改的文件
包含
3 行增加
和
5 行删除
@@ -154,11 +154,9 @@ class User extends Api | @@ -154,11 +154,9 @@ class User extends Api | ||
154 | // 'end_time' => ['>',time()] | 154 | // 'end_time' => ['>',time()] |
155 | ]; | 155 | ]; |
156 | $store_house = Db::name('store_house')->where($where_house)->count(); | 156 | $store_house = Db::name('store_house')->where($where_house)->count(); |
157 | - if(!$store_house) { | ||
158 | - $store_house = 2; | ||
159 | - } | 157 | + $is_store = !$store_house ? 2 : $store['status']; |
160 | } else { | 158 | } else { |
161 | - $store_house = $store ? $store['status'] : 0; | 159 | + $is_store = $store ? $store['status'] : 0; |
162 | } | 160 | } |
163 | $data = [ | 161 | $data = [ |
164 | // 当前小区信息 | 162 | // 当前小区信息 |
@@ -172,7 +170,7 @@ class User extends Api | @@ -172,7 +170,7 @@ class User extends Api | ||
172 | ->where('is_read_user',2) | 170 | ->where('is_read_user',2) |
173 | ->count(), | 171 | ->count(), |
174 | // 是否入驻店铺 | 172 | // 是否入驻店铺 |
175 | - 'is_store' => $store_house | 173 | + 'is_store' => $is_store |
176 | ]; | 174 | ]; |
177 | $user = $user->visible([ | 175 | $user = $user->visible([ |
178 | 'id', | 176 | 'id', |
-
请 注册 或 登录 后发表评论