小程序判断

This commit is contained in:
shengchanzhe 2023-10-17 09:31:30 +08:00
parent 237ae4b863
commit 1a5abae6e6

View File

@ -358,6 +358,12 @@ class Auth extends BaseController
$thirdList[] = $temp;
}
$data['thirdparty'] = $thirdList;
$arr=env('APP_SHOW')??[];
if(in_array($user['uid'],$arr )){
$data['show_controller_applet']=true;
}else{
$data['show_controller_applet']=false;
}
return app('json')->success($data);
}