Browse Source

新增项目首页之后, 默认跳转到项目概览

yunxing 4 years ago
parent
commit
225a8eec31
2 changed files with 4 additions and 2 deletions
  1. 2 1
      src/router/index.js
  2. 2 1
      src/store/index.js

+ 2 - 1
src/router/index.js

@@ -34,7 +34,8 @@ const routes = [
         path: "/home",
         name: "home",
         component: () => import("../views/index"),
-        redirect: "/home/homepage",
+        // TODO: 1.默认跳转到项目概览
+        redirect: "/home/overview",
         children: [{
                 path: "homepage",
                 name: "项目首页",

+ 2 - 1
src/store/index.js

@@ -220,7 +220,8 @@ export default new Vuex.Store({
                                     commit('SETPLAZENAME', res.treeData[0].cname)
                                 }
                                 router.push({
-                                    path: './home/homepage',
+                                    // TODO: 1.默认跳转到项目概览
+                                    path: './home/overview',
                                     query: {
                                         plazaId: res.treeData[0].ccode,
                                     },