|
@@ -1,3 +1,4 @@
|
|
|
+import { webLogin, getUserInfo, getConfigInfo, getTemplateInfo } from '@/common/utils/util.js'
|
|
|
// #ifdef H5
|
|
|
// 解析地址栏参数
|
|
|
function getQueryVariable(variable) {
|
|
@@ -16,7 +17,10 @@ function getQueryVariable(variable) {
|
|
|
}
|
|
|
return undefined
|
|
|
}
|
|
|
-uni.removeStorageSync(`APPID${getQueryVariable('appid')}_token`)
|
|
|
+if (!getQueryVariable('code')) {
|
|
|
+ uni.removeStorageSync(`APPID${getQueryVariable('appid')}_token`)
|
|
|
+ webLogin(true)
|
|
|
+}
|
|
|
// #endif
|
|
|
import Vue from 'vue'
|
|
|
import App from './App'
|
|
@@ -140,7 +144,6 @@ Vue.component('zjPageLayout', zjPageLayout)
|
|
|
import floatButton from '@/components/floatButton.vue'
|
|
|
Vue.component('floatButton', floatButton)
|
|
|
|
|
|
-import { getUserInfo, getConfigInfo, getTemplateInfo } from '@/common/utils/util.js'
|
|
|
Vue.prototype.$getUserInfo = getUserInfo
|
|
|
Vue.prototype.$getConfigInfo = getConfigInfo
|
|
|
Vue.prototype.$getTemplateInfo = getTemplateInfo
|