|
@@ -1,5 +1,5 @@
|
|
|
import { defineStore } from "pinia";
|
|
|
-import { storage } from "@/utils/storage";
|
|
|
+import { storage, storageSystem } from "@/utils/storage";
|
|
|
import { getToken, setToken, removeToken } from "@/utils/auth";
|
|
|
// 接口引用
|
|
|
import { login, logout, getInfo, getMobileTenantConfig, getCodeImg } from "@/api/login";
|
|
@@ -265,14 +265,6 @@ const useStores = defineStore("useStores", {
|
|
|
this.SET_TOKEN("");//清空token
|
|
|
this.SET_ROLES([]);
|
|
|
this.SET_PERMISSIONS([]);
|
|
|
- this.SET_STORAGE_OBJECT_KEYS({
|
|
|
- loginTitle: "",
|
|
|
- loginBottomTitle: "",
|
|
|
- loginBg: "",
|
|
|
- loginLogo: "",
|
|
|
- tenantId: "",
|
|
|
- wxOpenId: ""
|
|
|
- });//清空登录页数据
|
|
|
removeToken();
|
|
|
storage.clean();
|
|
|
resolve();
|
|
@@ -287,26 +279,27 @@ const useStores = defineStore("useStores", {
|
|
|
* @获取微信OpenId
|
|
|
* @param { 类型 } type
|
|
|
*/
|
|
|
- GetWxOpenId(type) {
|
|
|
+ GetWxOpenId(type, options) {
|
|
|
if (type == 1 && common.isWechatMp()) {
|
|
|
if (window.location.href.indexOf("openId=") == -1) {
|
|
|
window.location.href = config.baseUrl + "/service-iot/weChat/getFirst1";
|
|
|
} else {
|
|
|
- this.SET_STORAGE_OBJECT_KEYS({
|
|
|
- wxOpenId: common.getUrlList().openId
|
|
|
- })
|
|
|
+ storage.set("wxOpenId", common.getUrlList().openId)
|
|
|
+ storageSystem.set("wxOpenId", common.getUrlList().openId)
|
|
|
}
|
|
|
} else if (type == 2 && common.isWechatMp()) {
|
|
|
- if (window.location.href.indexOf("openId=") == -1) {
|
|
|
- window.location.href = config.baseUrl + "/service-iot/weChat/getPageAuthorization?openId=" + this.wxOpenId;
|
|
|
- } else {
|
|
|
- this.SET_STORAGE_OBJECT_KEYS({
|
|
|
- wxOpenId: common.getUrlList().openId
|
|
|
- })
|
|
|
+ if (options?.flag === undefined || options?.flag == false) {
|
|
|
+ // alert("store" + storage.get("wxOpenId"))
|
|
|
+ // alert("store" + storageSystem.get("wxOpenId"))
|
|
|
+ // alert("token" + getToken())
|
|
|
+ if (storage.get("wxOpenId")) {
|
|
|
+ window.location.href = config.baseUrl + "/service-iot/weChat/getPageAuthorization?openId=" + storage.get("wxOpenId");
|
|
|
+ } else {
|
|
|
+ window.location.href = config.baseUrl + "/service-iot/weChat/getPageAuthorization";
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
-
|
|
|
SET_TOKEN(token) {
|
|
|
this.token = token;
|
|
|
},
|