89 lines
2.3 KiB
Vue
89 lines
2.3 KiB
Vue
<template>
|
|
<div id="global_header">
|
|
<el-menu
|
|
:default-active="defaultActive"
|
|
class="el-menu-vertical account-menu"
|
|
:collapse="true"
|
|
:route="true"
|
|
:background-color="themeColor"
|
|
text-color="#909399"
|
|
active-text-color="#ffffff">
|
|
<el-menu-item :index="index.toString()" v-for="(account, index) in accounts" v-bind:key="account._id" :route="{path: `/${account._id}/home`}" @click="select(account)">
|
|
<i class="el-icon-menu"></i>
|
|
<span slot="title">{{ account.domain }}</span>
|
|
</el-menu-item>
|
|
<el-menu-item index="/login" @click="login">
|
|
<i class="el-icon-plus"></i>
|
|
<span slot="new">New</span>
|
|
</el-menu-item>
|
|
</el-menu>
|
|
<div class="space">
|
|
<router-view :key="$route.params.id"></router-view>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapState } from 'vuex'
|
|
|
|
export default {
|
|
name: 'global-header',
|
|
computed: {
|
|
...mapState({
|
|
defaultActive: state => state.GlobalHeader.defaultActive,
|
|
accounts: state => state.GlobalHeader.accounts,
|
|
themeColor: state => state.App.theme.global_header_color
|
|
})
|
|
},
|
|
created () {
|
|
this.initialize()
|
|
},
|
|
methods: {
|
|
async initialize () {
|
|
await this.$store.dispatch('GlobalHeader/removeShortcutEvents')
|
|
this.$store.dispatch('GlobalHeader/watchShortcutEvents')
|
|
try {
|
|
const accounts = await this.$store.dispatch('GlobalHeader/listAccounts')
|
|
if (this.$route.params.id === undefined) {
|
|
this.$store.dispatch('GlobalHeader/schmearMenu', accounts[0]._id)
|
|
return this.$router.push({ path: `/${accounts[0]._id}/home` })
|
|
} else {
|
|
return this.$store.dispatch('GlobalHeader/schmearMenu', this.$route.params.id)
|
|
}
|
|
} catch (err) {
|
|
return this.$router.push({ path: '/login' })
|
|
}
|
|
},
|
|
login () {
|
|
return this.$router.push({ path: '/login' })
|
|
},
|
|
select (account) {
|
|
console.log(account._id)
|
|
return this.$router.push({ path: `/${account._id}/home` })
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
#global_header /deep/ {
|
|
.account-menu {
|
|
height: 100%;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 65px;
|
|
padding-top: 24px;
|
|
|
|
.el-tooltip {
|
|
outline: 0;
|
|
}
|
|
}
|
|
|
|
.space {
|
|
margin-left: 65px;
|
|
height: 100%;
|
|
}
|
|
}
|
|
</style>
|