d9f71c2d by lttnew

提示

1 parent dcf867ab
......@@ -758,7 +758,7 @@ function goPath(path) {
}
return
}
if (memberInfo.value.activeStatus == 0) {
if (app.globalData.memberInfo?.activeStatus == 0) {
uni.showModal({
title: '提示',
content: '账号未激活,请前去激活',
......@@ -893,7 +893,7 @@ function init() {
}
})
}
if (memberInfo.value.activeStatus == 0) {
if (app.globalData.memberInfo?.activeStatus == 0) {
uni.showModal({
content: '账号未激活,请前去激活',
success: function (res) {
......@@ -1030,14 +1030,14 @@ function checkDialogs() {
// 密码长期未更新提示: changePassFlag='1' && activeStatus=1 && authenticationStatus=2
if (app.globalData.changePassFlag == '1' &&
memberInfoData.activeStatus == '1' &&
app.globalData.memberInfo?.activeStatus == '1' &&
app.globalData.authenticationStatus == 2) {
passwordTipPopup.value.open()
}
// 绑定手机号条件: changePassFlag='1' && activeStatus=1 && authenticationStatus=2 && phonenumber为空 && checkFlag=1
if (app.globalData.changePassFlag === '1' &&
memberInfoData.activeStatus == 1 &&
app.globalData.memberInfo?.activeStatus == 1 &&
app.globalData.authenticationStatus == 2 &&
!user.phonenumber &&
user.checkFlag == 1) {
......@@ -1046,7 +1046,7 @@ function checkDialogs() {
}
// 申请考点条件: activeStatus=1 && authenticationStatus=2 && hintFlag=1 && deptType=6 && isPoints=1
if (memberInfoData.activeStatus == 1 &&
if (app.globalData.memberInfo?.activeStatus == 1 &&
app.globalData.authenticationStatus == 2 &&
user.hintFlag == 1 &&
app.globalData.deptType == 6 &&
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!