头像等完善

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 => {})
},
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() {
this.$refs.nav.jump({

@ -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() // tokentoken
}
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() // tokentoken
}
}
}
}
};

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

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

Loading…
Cancel
Save