Jelajahi Sumber

fix: 修复单广场项目用户,项目首页刷新时跳转项目概览的问题

yunxing 4 tahun lalu
induk
melakukan
7a4c2317a2
1 mengubah file dengan 11 tambahan dan 7 penghapusan
  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',