头像等完善

dev_2020-03-03
yujialong 3 years ago
parent dbd57f8714
commit a8edf21d72
  1. 7
      src/layouts/header/index.vue
  2. 30
      src/layouts/navbar/index.vue
  3. 3
      src/pages/match/details/index.vue
  4. 3
      src/setting.js

@ -72,7 +72,12 @@ export default {
}).catch(err => {}) }).catch(err => {})
}, },
toPersonal() { toPersonal() {
this.customerName || this.$router.push("/setting/person") //
if (this.isIndex) {
window.open(this.$router.resolve('/setting/person').href)
} else {
this.customerName || this.$router.push("/setting/person") //
}
}, },
toIndex() { toIndex() {
this.$refs.nav.jump({ this.$refs.nav.jump({

@ -51,6 +51,10 @@ export default {
index: "/index/list", index: "/index/list",
title: "首页" title: "首页"
}, },
{
index: 'data',
title: "数据科研"
},
{ {
index: "/cityPartner/list", index: "/cityPartner/list",
title: "城市合伙人" title: "城市合伙人"
@ -69,15 +73,25 @@ export default {
}, },
methods: { methods: {
jump(item) { jump(item) {
const token = util.local.get(Setting.tokenKey) const { index } = item
// //
if (!token && this.loginedMenu.find(e => e.index === item.index)) { if (index === 'data') {
location.reload() window.open(Setting.isDev
? `http://192.168.31.125:8092/#/`
: Setting.isTest
? location.origin
: `http://www.dataforward.cn`)
} else { } else {
this.active = item.index const token = util.local.get(Setting.tokenKey)
this.$router.push(item.index).catch(err => {}) //
token !== this.token && location.reload() // tokentoken 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() // tokentoken
}
}
} }
} }
}; };

@ -274,9 +274,6 @@ export default {
width: 2px; width: 2px;
height: 100%; height: 100%;
background-color: #E1E6F2; background-color: #E1E6F2;
@media(max-width: 1300px){
left: 289px;
}
} }
&:after { &:after {
content: ''; content: '';

@ -65,6 +65,9 @@ const Setting = {
tokenKey: "oc_client_token", // localStorage里保存的token的key tokenKey: "oc_client_token", // localStorage里保存的token的key
storeKey: "oc_client_store", // localStorage里保存的vuex的key storeKey: "oc_client_store", // localStorage里保存的vuex的key
initialPassword: "111aaa", // 默认密码 initialPassword: "111aaa", // 默认密码
isDev,
isTest,
isPro,
/** /**
* 路由白名单 * 路由白名单
* */ * */

Loading…
Cancel
Save