This commit is contained in:
彭桃 2023-03-21 14:28:51 +08:00
parent 31265bb9c0
commit 5bf79646a2

View File

@ -1633,7 +1633,9 @@ class Maintainentry extends BaseController
// 获取户主id
$where['user_id'] = $user_id;
$where['status'] = 1;
$name = Db::table('fa_szxc_information_usermsg')->where($where)->value('name');
$user_info = Db::table('fa_szxc_information_usermsg')->where($where)->find();
$name = $user_info['name'];
$my_is_hz = $user_info['is_hz'];
$is_set_hz = 0;
foreach ($res as $k=>$v){
if($v['is_hz']==1){
@ -1689,6 +1691,7 @@ class Maintainentry extends BaseController
$return['family_num'] = Db::table('fa_szxc_information_usermsg')->where($map)->count();
$return['is_set_hz'] = $is_set_hz;
$return['avatar'] = Db::connect('shop')->table('eb_user')->where('uid', $user_id)->value('avatar');
$return['is_hz'] = $my_is_hz??0;//自己是否是户主
$return['data'] = $res;
$this->apiSuccess('获取成功', $return, 1);
}
@ -1729,7 +1732,9 @@ class Maintainentry extends BaseController
// 获取户主id
$where['user_id'] = $user_id;
$where['status'] = 1;
$name = Db::table('fa_szxc_information_usermsg')->where($where)->value('name');
$user_info = Db::table('fa_szxc_information_usermsg')->where($where)->find();
$name = $user_info['name'];
$my_is_hz = $user_info['is_hz'];
$is_set_hz = 0;
foreach ($res as $k=>$v){
if($v['is_hz']==1){
@ -1785,6 +1790,7 @@ class Maintainentry extends BaseController
$return['family_num'] = Db::table('fa_szxc_information_usermsg')->where($map)->count();
$return['is_set_hz'] = $is_set_hz;
$return['avatar'] = Db::connect('shop')->table('eb_user')->where('uid', $user_id)->value('avatar');
$return['is_hz'] = $my_is_hz??0;//自己是否是户主
$return['data'] = $res;
$this->apiSuccess('获取成功', $return, 1);
}