|
@@ -222,13 +222,17 @@ export default new Vuex.Store({
|
|
commit('STOREPLAZAID', res.treeData[0].ccode)
|
|
commit('STOREPLAZAID', res.treeData[0].ccode)
|
|
commit('SETPLAZENAME', res.treeData[0].cname)
|
|
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 {
|
|
} else {
|
|
router.push({
|
|
router.push({
|
|
path: './group',
|
|
path: './group',
|