|
@@ -309,13 +309,14 @@ const useStores = defineStore("useStores", {
|
|
|
GetWxOpenId(type, options) {
|
|
|
let url = "https://manager.usky.cn/mobile/#/"
|
|
|
if (type == 1 && common.isWechatMp()) {
|
|
|
- if (localStorage.getItem("wxOpenId") && getToken()) {
|
|
|
+ if (localStorage.getItem("wxOpenId") && localStorage.getItem("App-Token")) {
|
|
|
getPageAuthorization({ openId: localStorage.getItem("wxOpenId") }).then((res) => {
|
|
|
- if (res.data?.openid) {
|
|
|
+ if (res.data?.openid && res.data?.acesToken) {
|
|
|
window.location.href = `${url}pages/index`;
|
|
|
} else {
|
|
|
this.LogOut().then(() => {
|
|
|
localStorage.removeItem("wxOpenId")
|
|
|
+ localStorage.removeItem("App-Token")
|
|
|
window.location.href = config.baseUrl + "/service-iot/weChat/getFirst1";
|
|
|
})
|
|
|
}
|
|
@@ -328,11 +329,12 @@ const useStores = defineStore("useStores", {
|
|
|
}
|
|
|
}
|
|
|
} else if (type == 2 && common.isWechatMp()) {
|
|
|
- if (localStorage.getItem("wxOpenId") && getToken()) {
|
|
|
+ if (localStorage.getItem("wxOpenId") && localStorage.getItem("App-Token")) {
|
|
|
getPageAuthorization({ openId: localStorage.getItem("wxOpenId") }).then((res) => {
|
|
|
- if (!res.data?.openid) {
|
|
|
+ if (!res.data?.openid || !res.data?.acesToken) {
|
|
|
this.LogOut().then(() => {
|
|
|
localStorage.removeItem("wxOpenId")
|
|
|
+ localStorage.removeItem("App-Token")
|
|
|
window.location.href = config.baseUrl + "/service-iot/weChat/getFirst1";
|
|
|
})
|
|
|
}
|