119 lines
2.5 KiB
Vue
119 lines
2.5 KiB
Vue
<template>
|
|
<div class="drawer-container">
|
|
<div>
|
|
<h3 class="drawer-title">系统布局配置</h3>
|
|
<div class="drawer-item">
|
|
<span>显示 Logo</span>
|
|
<el-switch v-model="sidebarLogo" class="drawer-switch" />
|
|
</div>
|
|
<div class="drawer-item">
|
|
<span>固定 Header</span>
|
|
<el-switch v-model="fixedHeader" class="drawer-switch" />
|
|
</div>
|
|
<div class="drawer-item">
|
|
<span>开启 Tags-Views</span>
|
|
<el-switch v-model="tagsView" class="drawer-switch" />
|
|
</div>
|
|
<div class="drawer-item">
|
|
<span>显示 SettingButton</span>
|
|
<el-switch v-model="settingBtn" class="drawer-switch" />
|
|
</div>
|
|
<div class="drawer-item">
|
|
<span>菜单 UniqueOpened</span>
|
|
<el-switch v-model="uniqueOpened" class="drawer-switch" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {}
|
|
},
|
|
computed: {
|
|
fixedHeader: {
|
|
get() {
|
|
return this.$store.state.settings.fixedHeader
|
|
},
|
|
set(val) {
|
|
this.$store.dispatch('changeSetting', {
|
|
key: 'fixedHeader',
|
|
value: val
|
|
})
|
|
}
|
|
},
|
|
tagsView: {
|
|
get() {
|
|
return this.$store.state.settings.tagsView
|
|
},
|
|
set(val) {
|
|
this.$store.dispatch('changeSetting', {
|
|
key: 'tagsView',
|
|
value: val
|
|
})
|
|
}
|
|
},
|
|
sidebarLogo: {
|
|
get() {
|
|
return this.$store.state.settings.sidebarLogo
|
|
},
|
|
set(val) {
|
|
this.$store.dispatch('changeSetting', {
|
|
key: 'sidebarLogo',
|
|
value: val
|
|
})
|
|
}
|
|
},
|
|
settingBtn: {
|
|
get() {
|
|
return this.$store.state.settings.settingBtn
|
|
},
|
|
set(val) {
|
|
this.$store.dispatch('changeSetting', {
|
|
key: 'settingBtn',
|
|
value: val
|
|
})
|
|
}
|
|
},
|
|
uniqueOpened: {
|
|
get() {
|
|
return this.$store.state.settings.uniqueOpened
|
|
},
|
|
set(val) {
|
|
this.$store.dispatch('changeSetting', {
|
|
key: 'uniqueOpened',
|
|
value: val
|
|
})
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.drawer-container {
|
|
padding: 24px;
|
|
font-size: 14px;
|
|
line-height: 1.5;
|
|
word-wrap: break-word;
|
|
|
|
.drawer-title {
|
|
margin-bottom: 12px;
|
|
color: rgba(0, 0, 0, .85);
|
|
font-size: 14px;
|
|
line-height: 22px;
|
|
}
|
|
|
|
.drawer-item {
|
|
color: rgba(0, 0, 0, .65);
|
|
font-size: 14px;
|
|
padding: 12px 0;
|
|
}
|
|
|
|
.drawer-switch {
|
|
float: right
|
|
}
|
|
}
|
|
</style>
|