You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
116 lines
2.0 KiB
116 lines
2.0 KiB
<template>
|
|
<div class="navbar">
|
|
<img
|
|
:src="logo"
|
|
class="logo" >
|
|
<div class="nav-title">
|
|
系统设置
|
|
</div>
|
|
<div
|
|
class="back-home"
|
|
@click="enterHome">返回首页</div>
|
|
<div
|
|
class="go-out"
|
|
@click="enterLogin">退出系统</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { Loading } from 'element-ui'
|
|
import { mapGetters } from 'vuex'
|
|
|
|
export default {
|
|
components: {},
|
|
props: {
|
|
navIndex: {
|
|
type: Number,
|
|
default: 0
|
|
}
|
|
},
|
|
data() {
|
|
return {}
|
|
},
|
|
computed: {
|
|
...mapGetters(['logo'])
|
|
},
|
|
mounted() {},
|
|
methods: {
|
|
enterHome() {
|
|
this.$router.replace({
|
|
path: '/'
|
|
})
|
|
},
|
|
enterLogin() {
|
|
this.$confirm('退出登录?', '提示', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: 'warning'
|
|
})
|
|
.then(() => {
|
|
var loading = Loading.service({
|
|
target: document.getElementById('#app')
|
|
})
|
|
this.$store
|
|
.dispatch('user/logout')
|
|
.then(() => {
|
|
loading.close()
|
|
this.$router.push('/login')
|
|
})
|
|
.catch(() => {
|
|
loading.close()
|
|
})
|
|
})
|
|
.catch(() => {})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
|
.navbar {
|
|
height: 45px;
|
|
min-height: 45px;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0 90px 0 30px;
|
|
background-color: white;
|
|
.logo {
|
|
width: 150px;
|
|
height: 40px;
|
|
display: block;
|
|
flex-shrink: 0;
|
|
margin-right: 60px;
|
|
}
|
|
.nav-title {
|
|
flex: 1;
|
|
font-size: 16px;
|
|
color: #333333;
|
|
}
|
|
}
|
|
|
|
.back-home {
|
|
width: 94px;
|
|
height: 36px;
|
|
line-height: 36px;
|
|
background-color: #3e84e9;
|
|
border-radius: 3px;
|
|
text-align: center;
|
|
color: #fff;
|
|
font-size: 14px;
|
|
margin-right: 10px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.go-out {
|
|
width: 94px;
|
|
height: 36px;
|
|
line-height: 36px;
|
|
background-color: #c2c2c2;
|
|
border-radius: 3px;
|
|
text-align: center;
|
|
color: #fff;
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
}
|
|
</style>
|
|
|
|
|