|
|
|
@ -18,16 +18,16 @@ |
|
|
|
|
<el-divider direction="vertical"></el-divider> |
|
|
|
|
<a class="logout" @click="logout">退出</a> |
|
|
|
|
</template> |
|
|
|
|
<router-link v-else class="login" to="/login" target="_blank"> |
|
|
|
|
<div v-else class="login" @click="toLogin"> |
|
|
|
|
<img src="@/assets/img/user.png" alt=""> |
|
|
|
|
<span>登录</span> |
|
|
|
|
</router-link> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
|
<script> |
|
|
|
|
import { mapState, mapActions } from "vuex"; |
|
|
|
|
import { mapState, mapMutations, mapActions } from "vuex"; |
|
|
|
|
import Setting from "@/setting"; |
|
|
|
|
import util from "@/libs/util"; |
|
|
|
|
import navbar from "../navbar"; |
|
|
|
@ -53,6 +53,9 @@ export default { |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
...mapMutations("user", [ |
|
|
|
|
'SET_CUSTOMERNAME' |
|
|
|
|
]), |
|
|
|
|
...mapActions("user", [ |
|
|
|
|
"logout", "setTitle", "setLogoUrl", "setAvatar", "setUserName" |
|
|
|
|
]), |
|
|
|
@ -66,9 +69,14 @@ export default { |
|
|
|
|
}, |
|
|
|
|
getUserInfo() { |
|
|
|
|
this.$get(this.api.queryUserInfoDetails).then(res => { |
|
|
|
|
let {userAvatars, userName} = res.result.hrUserInfo; |
|
|
|
|
const {userAvatars, userName} = res.result.hrUserInfo || {} |
|
|
|
|
userAvatars && this.setAvatar(userAvatars); |
|
|
|
|
this.setUserName(userName); |
|
|
|
|
if (!userName && !this.customerName) { |
|
|
|
|
this.$get(this.api.isClient).then(res => { |
|
|
|
|
res.customerName && this.SET_CUSTOMERNAME(res.customerName) |
|
|
|
|
}).catch(res => {}) |
|
|
|
|
} |
|
|
|
|
}).catch(err => {}) |
|
|
|
|
}, |
|
|
|
|
toPersonal() { |
|
|
|
@ -83,6 +91,9 @@ export default { |
|
|
|
|
this.$refs.nav.jump({ |
|
|
|
|
index: this.isIndex ? '/index/list' : '/station/list' |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
toLogin() { |
|
|
|
|
window.open(this.$router.resolve('/login').href) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|