|
@@ -281,32 +281,38 @@ const useStores = defineStore("useStores", {
|
|
|
* @param { 类型 } type
|
|
|
*/
|
|
|
GetWxOpenId(type, options) {
|
|
|
+ let url = "https://manager.usky.cn/mobile/#/"
|
|
|
if (type == 1 && common.isWechatMp()) {
|
|
|
- if (storage.get("wxOpenId") && getToken()) {
|
|
|
- // alert("已登录");
|
|
|
- tab.reLaunch("/pages/index?flag=true");
|
|
|
+ if (localStorage.getItem("wxOpenId") && getToken()) {
|
|
|
+ getPageAuthorization({ openId: localStorage.getItem("wxOpenId") }).then((res) => {
|
|
|
+ if (res.data?.openid) {
|
|
|
+ window.location.href = `${url}pages/index`;
|
|
|
+ } else {
|
|
|
+ this.LogOut().then(() => {
|
|
|
+ localStorage.removeItem("wxOpenId")
|
|
|
+ window.location.href = config.baseUrl + "/service-iot/weChat/getFirst1";
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
} else {
|
|
|
- // alert("未授权")
|
|
|
if (window.location.href.indexOf("openId=") == -1) {
|
|
|
- // alert("未授权url无openid")
|
|
|
window.location.href = config.baseUrl + "/service-iot/weChat/getFirst1";
|
|
|
} else {
|
|
|
- // alert("未授权url有openid")
|
|
|
- storage.set("wxOpenId", common.getUrlList().openId)
|
|
|
+ localStorage.setItem("wxOpenId", common.getUrlList().openId)
|
|
|
}
|
|
|
}
|
|
|
} else if (type == 2 && common.isWechatMp()) {
|
|
|
- if (options?.flag === undefined || options?.flag == false) {
|
|
|
- // alert("首页无flag",)
|
|
|
- if (storage.get("wxOpenId") && getToken()) {
|
|
|
- // alert("首页有openid、token")
|
|
|
- window.location.href = config.baseUrl + "/service-iot/weChat/getPageAuthorization?openId=" + storage.get("wxOpenId");
|
|
|
- } else {
|
|
|
- // alert("首页无openid,回登录页")
|
|
|
- window.location.href = config.baseUrl + "/service-iot/weChat/getFirst1";
|
|
|
- }
|
|
|
+ if (localStorage.getItem("wxOpenId") && getToken()) {
|
|
|
+ getPageAuthorization({ openId: localStorage.getItem("wxOpenId") }).then((res) => {
|
|
|
+ if (!res.data?.openid) {
|
|
|
+ this.LogOut().then(() => {
|
|
|
+ localStorage.removeItem("wxOpenId")
|
|
|
+ window.location.href = config.baseUrl + "/service-iot/weChat/getFirst1";
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
} else {
|
|
|
- // alert("首页有flag,结束")
|
|
|
+ window.location.href = config.baseUrl + "/service-iot/weChat/getFirst1";
|
|
|
}
|
|
|
}
|
|
|
},
|