|
|
|
@ -51,6 +51,10 @@ export default { |
|
|
|
|
index: "/index/list", |
|
|
|
|
title: "首页" |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
index: 'data', |
|
|
|
|
title: "数据科研" |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
index: "/cityPartner/list", |
|
|
|
|
title: "城市合伙人" |
|
|
|
@ -69,15 +73,25 @@ export default { |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
jump(item) { |
|
|
|
|
const token = util.local.get(Setting.tokenKey) |
|
|
|
|
// 如果未登录且跳转的是登录后才有的菜单 |
|
|
|
|
if (!token && this.loginedMenu.find(e => e.index === item.index)) { |
|
|
|
|
location.reload() |
|
|
|
|
const { index } = item |
|
|
|
|
// 数据科研点击后打开新窗口去到数据平台 |
|
|
|
|
if (index === 'data') { |
|
|
|
|
window.open(Setting.isDev |
|
|
|
|
? `http://192.168.31.125:8092/#/` |
|
|
|
|
: Setting.isTest |
|
|
|
|
? location.origin |
|
|
|
|
: `http://www.dataforward.cn`) |
|
|
|
|
} else { |
|
|
|
|
this.active = item.index |
|
|
|
|
this.$router.push(item.index).catch(err => {}) |
|
|
|
|
token !== this.token && location.reload() // 如果登录后再返回该页面,浏览器里会存有token,但是这个页面里的token是刚进到页面时获取的,应该是空,如果是这个情况,则刷新,否则右上角还会显示为登录按钮 |
|
|
|
|
} |
|
|
|
|
const token = util.local.get(Setting.tokenKey) |
|
|
|
|
// 如果未登录且跳转的是登录后才有的菜单 |
|
|
|
|
if (!token && this.loginedMenu.find(e => e.index === index)) { |
|
|
|
|
location.reload() |
|
|
|
|
} else { |
|
|
|
|
this.active = index |
|
|
|
|
this.$router.push(index).catch(err => {}) |
|
|
|
|
token !== this.token && location.reload() // 如果登录后再返回该页面,浏览器里会存有token,但是这个页面里的token是刚进到页面时获取的,应该是空,如果是这个情况,则刷新,否则右上角还会显示为登录按钮 |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|