提示
Showing
1 changed file
with
5 additions
and
5 deletions
| ... | @@ -758,7 +758,7 @@ function goPath(path) { | ... | @@ -758,7 +758,7 @@ function goPath(path) { |
| 758 | } | 758 | } |
| 759 | return | 759 | return |
| 760 | } | 760 | } |
| 761 | if (memberInfo.value.activeStatus == 0) { | 761 | if (app.globalData.memberInfo?.activeStatus == 0) { |
| 762 | uni.showModal({ | 762 | uni.showModal({ |
| 763 | title: '提示', | 763 | title: '提示', |
| 764 | content: '账号未激活,请前去激活', | 764 | content: '账号未激活,请前去激活', |
| ... | @@ -893,7 +893,7 @@ function init() { | ... | @@ -893,7 +893,7 @@ function init() { |
| 893 | } | 893 | } |
| 894 | }) | 894 | }) |
| 895 | } | 895 | } |
| 896 | if (memberInfo.value.activeStatus == 0) { | 896 | if (app.globalData.memberInfo?.activeStatus == 0) { |
| 897 | uni.showModal({ | 897 | uni.showModal({ |
| 898 | content: '账号未激活,请前去激活', | 898 | content: '账号未激活,请前去激活', |
| 899 | success: function (res) { | 899 | success: function (res) { |
| ... | @@ -1030,14 +1030,14 @@ function checkDialogs() { | ... | @@ -1030,14 +1030,14 @@ function checkDialogs() { |
| 1030 | 1030 | ||
| 1031 | // 密码长期未更新提示: changePassFlag='1' && activeStatus=1 && authenticationStatus=2 | 1031 | // 密码长期未更新提示: changePassFlag='1' && activeStatus=1 && authenticationStatus=2 |
| 1032 | if (app.globalData.changePassFlag == '1' && | 1032 | if (app.globalData.changePassFlag == '1' && |
| 1033 | memberInfoData.activeStatus == '1' && | 1033 | app.globalData.memberInfo?.activeStatus == '1' && |
| 1034 | app.globalData.authenticationStatus == 2) { | 1034 | app.globalData.authenticationStatus == 2) { |
| 1035 | passwordTipPopup.value.open() | 1035 | passwordTipPopup.value.open() |
| 1036 | } | 1036 | } |
| 1037 | 1037 | ||
| 1038 | // 绑定手机号条件: changePassFlag='1' && activeStatus=1 && authenticationStatus=2 && phonenumber为空 && checkFlag=1 | 1038 | // 绑定手机号条件: changePassFlag='1' && activeStatus=1 && authenticationStatus=2 && phonenumber为空 && checkFlag=1 |
| 1039 | if (app.globalData.changePassFlag === '1' && | 1039 | if (app.globalData.changePassFlag === '1' && |
| 1040 | memberInfoData.activeStatus == 1 && | 1040 | app.globalData.memberInfo?.activeStatus == 1 && |
| 1041 | app.globalData.authenticationStatus == 2 && | 1041 | app.globalData.authenticationStatus == 2 && |
| 1042 | !user.phonenumber && | 1042 | !user.phonenumber && |
| 1043 | user.checkFlag == 1) { | 1043 | user.checkFlag == 1) { |
| ... | @@ -1046,7 +1046,7 @@ function checkDialogs() { | ... | @@ -1046,7 +1046,7 @@ function checkDialogs() { |
| 1046 | } | 1046 | } |
| 1047 | 1047 | ||
| 1048 | // 申请考点条件: activeStatus=1 && authenticationStatus=2 && hintFlag=1 && deptType=6 && isPoints=1 | 1048 | // 申请考点条件: activeStatus=1 && authenticationStatus=2 && hintFlag=1 && deptType=6 && isPoints=1 |
| 1049 | if (memberInfoData.activeStatus == 1 && | 1049 | if (app.globalData.memberInfo?.activeStatus == 1 && |
| 1050 | app.globalData.authenticationStatus == 2 && | 1050 | app.globalData.authenticationStatus == 2 && |
| 1051 | user.hintFlag == 1 && | 1051 | user.hintFlag == 1 && |
| 1052 | app.globalData.deptType == 6 && | 1052 | app.globalData.deptType == 6 && | ... | ... |
-
Please register or sign in to post a comment