|
@@ -92,14 +92,16 @@ class RecuperateController extends MobileBaseController
|
|
|
/*查看手机是否认证*/
|
|
|
$member = auth('web-member')->user();
|
|
|
if($member->mobile_audit!='1'){
|
|
|
- $back_url = \Illuminate\Support\Facades\URL::previous();
|
|
|
- return $this->showMessage('请到个人中心先绑定手机号码', $back_url, true, '上一页', '3');
|
|
|
+ return $this->showMessage('请到个人中心先绑定手机号码', route('mobile.person.perSecTel'), true, '上一页', '3');
|
|
|
}
|
|
|
|
|
|
$members_info=MemberInfo::where('uid',$member->id)->select('realname','id_card','phone','card_t_cn')->first();
|
|
|
+ if ($members_info->isEmpty()) {
|
|
|
+ return $this->showMessage('请到个人中心填写身份证号', route('mobile.person.memberInfo'), true, '上一页', '3');
|
|
|
+ }
|
|
|
if($members_info->card_t_cn!='306' && !$members_info->id_card){
|
|
|
$back_url = \Illuminate\Support\Facades\URL::previous();
|
|
|
- return $this->showMessage('请到个人中心填写身份证号', $back_url, true, '上一页', '3');
|
|
|
+ return $this->showMessage('请到个人中心填写身份证号', route('mobile.person.memberInfo'), true, '上一页', '3');
|
|
|
}
|
|
|
|
|
|
// if(date('Y',time())!='2021'){
|