Browse Source

no message

linwenxin 1 month ago
parent
commit
1929271a0d
2 changed files with 32 additions and 33 deletions
  1. 13 10
      src/main.js
  2. 19 23
      src/store/modules/user/index.js

+ 13 - 10
src/main.js

@@ -1,13 +1,3 @@
-import Vue from 'vue'
-import App from './App'
-import store from 'store'
-import uView from 'uview-ui'
-Vue.use(uView)
-
-Vue.config.productionTip = false
-
-import { setStorage, getStorage, removeStorage } from '@/common/utils/storage.js'
-
 // #ifdef H5
 // 解析地址栏参数
 function getQueryVariable(variable) {
@@ -26,6 +16,19 @@ function getQueryVariable(variable) {
   }
   return undefined
 }
+uni.removeStorageSync(`APPID${getQueryVariable('appid')}_token`)
+// #endif
+import Vue from 'vue'
+import App from './App'
+import store from 'store'
+import uView from 'uview-ui'
+Vue.use(uView)
+
+Vue.config.productionTip = false
+
+import { setStorage, getStorage, removeStorage } from '@/common/utils/storage.js'
+
+// #ifdef H5
 if (getQueryVariable('x-token')) {
   setStorage('token', getQueryVariable('x-token') || '')
 }

+ 19 - 23
src/store/modules/user/index.js

@@ -1,43 +1,39 @@
-import actions from "./actions"
-import mutations from "./mutations"
-import {
-  setStorage,
-  getStorage,
-  removeStorage
-} from "@/common/utils/storage.js"
+import actions from './actions'
+import mutations from './mutations'
+import { setStorage, getStorage, removeStorage } from '@/common/utils/storage.js'
 
 // 解析地址栏参数
 function getQueryVariable(variable) {
   if (!window) {
-    return undefined;
+    return undefined
   }
   // 从?开始获取后面的所有数据
-  var query = window.location.search.substring(1);
+  var query = window.location.search.substring(1)
   // 从字符串&开始分隔成数组split
-  var vars = query.split('&');
+  var vars = query.split('&')
   // 遍历该数组
   for (var i = 0; i < vars.length; i++) {
     // 从等号部分分割成字符
-    var pair = vars[i].split('=');
+    var pair = vars[i].split('=')
     // 如果第一个元素等于 传进来的参的话 就输出第二个元素
     if (pair[0] == variable) {
-      return (pair[1]);
+      return pair[1]
     }
   }
-  return undefined;
+  return undefined
 }
 
 const state = {
-  openId: getQueryVariable("openId") || getStorage("openId") || '',
-  token: getQueryVariable("x-token") || getStorage("token") || '',
-  name: getQueryVariable("username") || getStorage("name") || '',
-  avatar: getQueryVariable("useravatar") || getStorage("avatar") || '',
-  userId: getQueryVariable("userId") || getStorage("userId") || '',
-  mobile: getQueryVariable("mobile") || getStorage("mobile") || '',
-  appId: getQueryVariable("appid") || getQueryVariable("appId") || '',
-  miniOpenId: getQueryVariable("miniOpenId") || getStorage("miniOpenId") || '',
-  sharerOpenId: getQueryVariable("sharerOpenId") || getStorage("sharerOpenId") || '',
-  crossPagePam: ""
+  openId: getQueryVariable('openId') || getStorage('openId') || '',
+  token: getQueryVariable('x-token') || getStorage('token') || '',
+  name: getQueryVariable('username') || getStorage('name') || '',
+  avatar: getQueryVariable('useravatar') || getStorage('avatar') || '',
+  userId: getQueryVariable('userId') || getStorage('userId') || '',
+  mobile: getQueryVariable('mobile') || getStorage('mobile') || '',
+  appId: getQueryVariable('appid') || getQueryVariable('appId') || '',
+  miniOpenId: getQueryVariable('miniOpenId') || getStorage('miniOpenId') || '',
+  sharerOpenId: getQueryVariable('sharerOpenId') || getStorage('sharerOpenId') || '',
+  crossPagePam: ''
 }
 export default {
   namespaced: true,