需求变更进行调整

This commit is contained in:
2026-01-30 09:01:38 +08:00
parent 44a4b33502
commit 79a21ff0a5
30 changed files with 1482 additions and 1707 deletions

View File

@@ -100,8 +100,7 @@
});
return;
}
let life = uni.getStorageSync('lifeData') || {}
let token = life.vuex_token
let token = this.$getToken()
let url = "/login/updateVerifyCode";
let encryptCode = rsaEncrypt(this.authCode);
this.$u.post(url, {
@@ -147,9 +146,9 @@
// #ifdef MP-WEIXIN
// 此处执行微信才执行
// #endif
uni.removeStorageSync('userInfo');
let token = this.$getToken();
let loginType = this.user.userType
let url = `/login/userInfo?loginType=${loginType}`;
let url = `/login/userInfo`;
this.$u.get(url, {}, {
'WT': token
}).then(obj => {
@@ -158,7 +157,8 @@
oaAuth: obj.data.oaAuth,
cusNo: obj.data.cusNo,
userName: obj.data.userName,
openId: obj.data.openId
openId: obj.data.openId,
subscribe: obj.data.subscribeMsg
})
});
}