Browse Source

Merge branch 'develop' of http://39.106.8.246:3003/web/wanda-bm-guide into develop

fujunwen 4 năm trước cách đây
mục cha
commit
db77b297d7
1 tập tin đã thay đổi với 11 bổ sung7 xóa
  1. 11 7
      src/store/index.js

+ 11 - 7
src/store/index.js

@@ -222,13 +222,17 @@ export default new Vuex.Store({
                                     commit('STOREPLAZAID', res.treeData[0].ccode)
                                     commit('SETPLAZENAME', res.treeData[0].cname)
                                 }
-                                router.push({
-                                    // TODO: 1.默认跳转到项目概览
-                                    path: './home/overview',
-                                    query: {
-                                        plazaId: res.treeData[0].ccode,
-                                    },
-                                })
+                                // TODO: 1.默认跳转到项目概览,如果是从项目首页刷新而来,进入项目首页
+                                if (window.location.href.indexOf('home/homepage') !== -1) {
+                                    router.push({ path: './home/homepage' })
+                                } else {
+                                    router.push({
+                                        path: './home/overview',
+                                        query: {
+                                            plazaId: res.treeData[0].ccode,
+                                        },
+                                    })
+                                }
                             } else {
                                 router.push({
                                     path: './group',