|
@@ -65,16 +65,16 @@ class Base extends Controller
|
|
$authInfo = json_decode(json_encode($check_authorization['data']), true);
|
|
$authInfo = json_decode(json_encode($check_authorization['data']), true);
|
|
if (!empty($authInfo['uid'])) {
|
|
if (!empty($authInfo['uid'])) {
|
|
$member = Db::name('store_member')->where('id',$authInfo['uid'])->find();
|
|
$member = Db::name('store_member')->where('id',$authInfo['uid'])->find();
|
|
- if(empty($member) || $member['is_deleted']) $this->error('会员不存在','',0);
|
|
|
|
|
|
+ if(empty($member) || $member['is_deleted']) $this->exception('会员不存在');
|
|
//if(!empty($authInfo['facility_code']) && !in_array($authInfo['facility_code'],[$member['facility_1'],$member['facility_2'],$member['facility_3'],$member['facility_4'],$member['facility_5']])) $this->error('该设备已被禁用','',0,-1);
|
|
//if(!empty($authInfo['facility_code']) && !in_array($authInfo['facility_code'],[$member['facility_1'],$member['facility_2'],$member['facility_3'],$member['facility_4'],$member['facility_5']])) $this->error('该设备已被禁用','',0,-1);
|
|
if($member['status']){
|
|
if($member['status']){
|
|
$this->user_id = $authInfo['uid'];
|
|
$this->user_id = $authInfo['uid'];
|
|
return $this->user_id;
|
|
return $this->user_id;
|
|
}else{
|
|
}else{
|
|
- $this->error('该会员已被禁用','',0,-1);
|
|
|
|
|
|
+ $this->exception('该会员已被禁用');
|
|
}
|
|
}
|
|
} else {
|
|
} else {
|
|
- $this->error('Token验证不通过,用户不存在','',0,-1);
|
|
|
|
|
|
+ $this->exception('Token验证不通过,用户不存在');
|
|
}
|
|
}
|
|
} catch (\Exception $e) {
|
|
} catch (\Exception $e) {
|
|
$this->error($e->getMessage(),'',0,-1);
|
|
$this->error($e->getMessage(),'',0,-1);
|