Browse Source

修复 刷新时项目首页跳转错误问题

yunxing 4 years ago
parent
commit
e1864e604f
2 changed files with 8 additions and 6 deletions
  1. 0 1
      src/router/index.js
  2. 8 5
      src/store/index.js

+ 0 - 1
src/router/index.js

@@ -94,7 +94,6 @@ const router = new VueRouter({
 const ignore = ["/404"]
 
 router.beforeEach(async (to, from, next) => {
-
     // 如果路径上有plazaId就保存
     let plazaId = to.query.plazaId ?to.query.plazaId:''
     if (plazaId) {

+ 8 - 5
src/store/index.js

@@ -11,7 +11,7 @@ export default new Vuex.Store({
         ssoToken: 'admin:liujiandong',
         // ssoToken: '',
         // ssoToken: null,
-        plazaName: "",
+        plazaName: '',
         isPreview: false,
         lastRoute: '',
         isrequestAuth: null, // 是否请求登录校验接口
@@ -98,7 +98,7 @@ export default new Vuex.Store({
             // state.userInfo.orgCode = palyload.orgCode
             // state.userInfo.username = palyload.username
             // TODO: 设置用户名
-            if (palyload.username){
+            if (palyload.username) {
                 state.userInfo.username = palyload.username
             }
         },
@@ -209,9 +209,12 @@ export default new Vuex.Store({
                             commit('SETPLAZENAME', data.plazaName)
                             localStorage.setItem('PLAZAID', data.plazaId)
                             commit('STOREPLAZAID', data.plazaId)
-                            router.push({
-                                path: './home/homepage',
-                            })
+                            // TODO: 1.默认跳转到项目概览,如果是从项目首页刷新而来,进入项目首页
+                            if (window.location.href.indexOf('home/homepage') !== -1) {
+                                router.push({ path: './home/homepage' })
+                            } else {
+                                router.push({ path: './home/overview' })
+                            }
                         } else {
                             if (level == 0) {
                                 if (res.treeData[0].ccode) {