wvp-gb28181-project/web_src/src/components/UiHeader.vue
2020-11-23 18:17:20 +08:00

26 lines
774 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div id="UiHeader">
<el-menu router :default-active="this.$route.path" background-color="#545c64" text-color="#fff" active-text-color="#ffd04b" mode="horizontal">
<el-menu-item index="/">控制台</el-menu-item>
<el-menu-item index="/videoList">设备列表</el-menu-item>
<el-menu-item index="/parentPlatformList/15/1">国标级联</el-menu-item>
<el-menu-item style="float: right;" @click="loginout">退出</el-menu-item>
</el-menu>
</div>
</template>
<script>
export default {
name: "UiHeader",
methods:{
loginout(){
// 删除cookie回到登录页面
this.$cookies.remove("session");
this.$router.push('/login');
},
}
}
</script>