ソースを参照

修复微信公众号自动退出登录问题

fanghuisheng 7 ヶ月 前
コミット
485969f75e

+ 9 - 6
src/pages/business/common/projectMange/write/insert.vue

@@ -31,7 +31,7 @@
     :data-theme="'theme-' + proxy.$settingStore.themeColor.name"
   >
     <template #default>
-      <template1 v-if="templateId == 1" :projectList="newProjectList" />
+      <template1 v-if="parseInt(props.templateId) == 1" :projectList="newProjectList" />
     </template>
   </oa-scroll>
 
@@ -54,13 +54,18 @@ import template1 from "./components/template1.vue";
 /*----------------------------------公共方法引入-----------------------------------*/
 /*----------------------------------公共变量-----------------------------------*/
 const { proxy } = getCurrentInstance();
+const props = defineProps({
+  templateId: {
+    type: String,
+    default: undefined,
+  },
+});
 /*----------------------------------变量声明-----------------------------------*/
 const state = reactive({
-  templateId: 1,
   modalShow: false,
   newProjectList: {},
 });
-const { templateId, modalShow, newProjectList } = toRefs(state);
+const { modalShow, newProjectList } = toRefs(state);
 
 function moreClick() {
   state.modalShow = true;
@@ -96,9 +101,7 @@ onShow(() => {
   proxy.$settingStore.systemThemeColor([1]);
 });
 
-onLoad((options) => {
-  "templateId" in options ? (state.templateId = parseInt(options.templateId)) : "";
-});
+onLoad((options) => {});
 
 onUnload(() => {});
 </script>

+ 2 - 2
src/store/modules/user.js

@@ -311,7 +311,7 @@ const useStores = defineStore("useStores", {
       if (type == 1 && common.isWechatMp()) {
         if (localStorage.getItem("wxOpenId") && localStorage.getItem("App-Token")) {
           getPageAuthorization({ openId: localStorage.getItem("wxOpenId") }).then((res) => {
-            if (res.data?.openid && res.data?.acesToken) {
+            if (res.data?.openid && res.data?.accessToken) {
               window.location.href = `${url}pages/index`;
             } else {
               this.LogOut().then(() => {
@@ -331,7 +331,7 @@ const useStores = defineStore("useStores", {
       } else if (type == 2 && common.isWechatMp()) {
         if (localStorage.getItem("wxOpenId") && localStorage.getItem("App-Token")) {
           getPageAuthorization({ openId: localStorage.getItem("wxOpenId") }).then((res) => {
-            if (!res.data?.openid || !res.data?.acesToken) {
+            if (!res.data?.openid || !res.data?.accessToken) {
               this.LogOut().then(() => {
                 localStorage.removeItem("wxOpenId")
                 localStorage.removeItem("App-Token")