This commit is contained in:
曹辉 2023-04-11 10:47:03 +08:00
parent ba0d799367
commit fafaada4b3
2 changed files with 7 additions and 10 deletions

View File

@ -267,7 +267,6 @@
}
updateNursePersonCheck(obj).then(res => {
if (res.code == 200) {
that.myInfo();
that.$refs.uToast.show({
title: '修改成功',
type: 'success',

View File

@ -171,15 +171,13 @@
},
//
goMyBenefits() {
if (this.personRoleLoginFlag == 'nursePersonRole') {
const value = uni.getStorageSync('nursePersonId');
if (value) {
uni.navigateTo({
url: '/pages/MyBenefits/MyBenefits'
})
} else {
this.gologin();
}
const personRoleLoginFlag = uni.getStorageSync('personRoleLoginFlag');
if (personRoleLoginFlag) {
uni.navigateTo({
url: '/pages/MyBenefits/MyBenefits'
})
} else {
this.gologin();
}
},
//退