新增:增加设置侧边栏的国际化语言配置;

This commit is contained in:
iczer 2020-06-23 16:20:50 +08:00
parent b16b5893c8
commit 0bc4a06611
5 changed files with 129 additions and 48 deletions

View File

@ -1,60 +1,60 @@
<template> <template>
<a-layout-sider class="sider" width="273"> <a-layout-sider class="sider" width="273">
<setting-item title="整体风格设置"> <setting-item :title="$t('theme.title')">
<img-checkbox-group @change="setTheme"> <img-checkbox-group @change="values => setTheme(values[0])">
<img-checkbox title="暗色菜单风格" img="https://gw.alipayobjects.com/zos/rmsportal/LCkqqYNmvBEbokSDscrm.svg" :checked="true" value="dark"/> <img-checkbox :title="$t('theme.dark')" img="https://gw.alipayobjects.com/zos/rmsportal/LCkqqYNmvBEbokSDscrm.svg" :checked="true" value="dark"/>
<img-checkbox title="亮色菜单风格" img="https://gw.alipayobjects.com/zos/rmsportal/jpRkZQMyYRryryPNtyIC.svg" value="light"/> <img-checkbox :title="$t('theme.light')" img="https://gw.alipayobjects.com/zos/rmsportal/jpRkZQMyYRryryPNtyIC.svg" value="light"/>
</img-checkbox-group> </img-checkbox-group>
</setting-item> </setting-item>
<setting-item title="主题色"> <setting-item :title="$t('theme.color')">
<color-checkbox-group @change="onColorChange" :defaultValues="themeColorIndex" :multiple="false"> <color-checkbox-group @change="onColorChange" :defaultValues="themeColorIndex" :multiple="false">
<color-checkbox v-for="(color, index) in colors" :key="index" :color="color" :value="index" /> <color-checkbox v-for="(color, index) in colors" :key="index" :color="color" :value="index" />
</color-checkbox-group> </color-checkbox-group>
</setting-item> </setting-item>
<a-divider/> <a-divider/>
<setting-item title="导航设置"> <setting-item :title="$t('navigate.title')">
<img-checkbox-group @change="setLayout"> <img-checkbox-group @change="values => setLayout(values[0])">
<img-checkbox title="侧边导航" img="https://gw.alipayobjects.com/zos/rmsportal/JopDzEhOqwOjeNTXkoje.svg" :checked="true" value="side"/> <img-checkbox :title="$t('navigate.side')" img="https://gw.alipayobjects.com/zos/rmsportal/JopDzEhOqwOjeNTXkoje.svg" :checked="true" value="side"/>
<img-checkbox title="顶部导航" img="https://gw.alipayobjects.com/zos/rmsportal/KDNDBbriJhLwuqMoxcAr.svg" value="head"/> <img-checkbox :title="$t('navigate.head')" img="https://gw.alipayobjects.com/zos/rmsportal/KDNDBbriJhLwuqMoxcAr.svg" value="head"/>
</img-checkbox-group> </img-checkbox-group>
</setting-item> </setting-item>
<setting-item> <setting-item>
<a-list :split="false"> <a-list :split="false">
<a-list-item> <a-list-item>
栅格模式 {{$t('navigate.content.title')}}
<a-select size="small" defaultValue="1" slot="actions" style="width: 80px"> <a-select size="small" defaultValue="1" slot="actions" style="width: 80px">
<a-select-option value="1">流式</a-select-option> <a-select-option value="1">{{$t('navigate.content.fluid')}}</a-select-option>
<a-select-option value="2">定宽</a-select-option> <a-select-option value="2">{{$t('navigate.content.fixed')}}</a-select-option>
</a-select> </a-select>
</a-list-item> </a-list-item>
<a-list-item> <a-list-item>
固定Header {{$t('navigate.fixedHeader')}}
<a-switch :checked="fixedHeader" slot="actions" size="small" @change="setFixedHeader" /> <a-switch :checked="fixedHeader" slot="actions" size="small" @change="setFixedHeader" />
</a-list-item> </a-list-item>
<a-list-item> <a-list-item>
固定侧边栏 {{$t('navigate.fixedSideBar')}}
<a-switch :checked="fixedSider" slot="actions" size="small" @change="setFixedSider" /> <a-switch :checked="fixedSideBar" slot="actions" size="small" @change="setFixedSideBar" />
</a-list-item> </a-list-item>
</a-list> </a-list>
</setting-item> </setting-item>
<a-divider /> <a-divider />
<setting-item title="其他设置"> <setting-item :title="$t('other.title')">
<a-list :split="false"> <a-list :split="false">
<a-list-item> <a-list-item>
色弱模式 {{$t('other.weekMode')}}
<a-switch :checked="weekMode" slot="actions" size="small" @change="setWeekMode" /> <a-switch :checked="weekMode" slot="actions" size="small" @change="setWeekMode" />
</a-list-item> </a-list-item>
<a-list-item> <a-list-item>
多页签模式 {{$t('other.multiPages')}}
<a-switch :checked="multiPage" slot="actions" size="small" @change="setMultiPage" /> <a-switch :checked="multiPage" slot="actions" size="small" @change="setMultiPage" />
</a-list-item> </a-list-item>
</a-list> </a-list>
</setting-item> </setting-item>
<a-divider /> <a-divider />
<setting-item title="页面切换动画"> <setting-item :title="$t('animate.title')">
<a-list :split="false"> <a-list :split="false">
<a-list-item> <a-list-item>
动画效果 {{$t('animate.effect')}}
<a-select <a-select
v-model="animate" v-model="animate"
@change="val => setAnimate(val)" @change="val => setAnimate(val)"
@ -64,7 +64,7 @@
</a-select> </a-select>
</a-list-item> </a-list-item>
<a-list-item> <a-list-item>
动画方向 {{$t('animate.direction')}}
<a-select <a-select
v-model="direction" v-model="direction"
@change="val => setAnimate(this.animate, val)" @change="val => setAnimate(this.animate, val)"
@ -75,7 +75,7 @@
</a-list-item> </a-list-item>
</a-list> </a-list>
</setting-item> </setting-item>
<a-button id="copyBtn" data-clipboard-text="Sorry, you have copied nothing O(_)O~" @click="copyCode" style="width: 100%" icon="copy" >拷贝代码</a-button> <a-button id="copyBtn" data-clipboard-text="Sorry, you have copied nothing O(_)O~" @click="copyCode" style="width: 100%" icon="copy" >{{$t('copy')}}</a-button>
</a-layout-sider> </a-layout-sider>
</template> </template>
@ -85,13 +85,14 @@ import ColorCheckbox from '../checkbox/ColorCheckbox'
import ImgCheckbox from '../checkbox/ImgCheckbox' import ImgCheckbox from '../checkbox/ImgCheckbox'
import Clipboard from 'clipboard' import Clipboard from 'clipboard'
import themeUtil from '../../utils/themeUtil' import themeUtil from '../../utils/themeUtil'
import { mapState } from 'vuex' import { mapState, mapMutations } from 'vuex'
const ColorCheckboxGroup = ColorCheckbox.Group const ColorCheckboxGroup = ColorCheckbox.Group
const ImgCheckboxGroup = ImgCheckbox.Group const ImgCheckboxGroup = ImgCheckbox.Group
const colors = ['#f5222d', '#fa541c', '#faad14', '#13c2c2', '#52c41a', '#1890ff', '#2f54eb', '#722ed1'] const colors = ['#f5222d', '#fa541c', '#faad14', '#13c2c2', '#52c41a', '#1890ff', '#2f54eb', '#722ed1']
export default { export default {
name: 'Setting', name: 'Setting',
i18n: require('./i18n'),
components: {ImgCheckboxGroup, ImgCheckbox, ColorCheckboxGroup, ColorCheckbox, SettingItem}, components: {ImgCheckboxGroup, ImgCheckbox, ColorCheckboxGroup, ColorCheckbox, SettingItem},
data() { data() {
return { return {
@ -105,7 +106,7 @@ export default {
directions() { directions() {
return this.animates.find(item => item.name == this.animate).directions return this.animates.find(item => item.name == this.animate).directions
}, },
...mapState('setting', ['animates', 'multiPage', 'weekMode', 'fixedHeader', 'fixedSider']) ...mapState('setting', ['animates', 'multiPage', 'weekMode', 'fixedHeader', 'fixedSideBar'])
}, },
methods: { methods: {
onColorChange (values, colors) { onColorChange (values, colors) {
@ -118,12 +119,6 @@ export default {
}) })
} }
}, },
setTheme (values) {
this.$store.commit('setting/setTheme', values[0])
},
setLayout (values) {
this.$store.commit('setting/setLayout', values[0])
},
copyCode () { copyCode () {
let clipboard = new Clipboard('#copyBtn') let clipboard = new Clipboard('#copyBtn')
const _this = this const _this = this
@ -132,24 +127,13 @@ export default {
clipboard.destroy() clipboard.destroy()
}) })
}, },
setMultiPage (checked) {
this.$store.commit('setting/setMultiPage', checked)
},
setWeekMode(checked) {
this.$store.commit('setting/setWeekMode', checked)
},
setAnimate(animate, direction) { setAnimate(animate, direction) {
if (direction == undefined) { if (direction == undefined) {
this.direction = this.directions[0] this.direction = this.directions[0]
} }
this.$store.commit('setting/setAnimate', {name: this.animate, direction: this.direction}) this.$store.commit('setting/setAnimate', {name: this.animate, direction: this.direction})
}, },
setFixedHeader(checked) { ...mapMutations('setting', ['setTheme', 'setLayout', 'setMultiPage', 'setWeekMode', 'setFixedSideBar', 'setFixedHeader'])
this.$store.commit('setting/setFixedHeader', checked)
},
setFixedSider(checked) {
this.$store.commit('setting/setFixedSider', checked)
}
} }
} }
</script> </script>

View File

@ -0,0 +1,97 @@
module.exports = {
messages: {
CN: {
theme: {
title: '整体风格设置',
light: '亮色菜单风格',
dark: '暗色菜单风格',
color: '主题色'
},
navigate: {
title: '导航设置',
side: '侧边导航',
head: '顶部导航',
content: {
title: '内容区域宽度',
fluid: '流式',
fixed: '定宽'
},
fixedHeader: '固定Header',
fixedSideBar: '固定侧边栏',
},
other: {
title: '其他设置',
weekMode: '色弱模式',
multiPages: '多页签模式'
},
animate: {
title: '页面切换动画',
effect: '动画效果',
direction: '动画方向'
},
copy: '拷贝配置'
},
HK: {
theme: {
title: '整體風格設置',
light: '亮色菜單風格',
dark: '暗色菜單風格',
color: '主題色'
},
navigate: {
title: '導航設置',
side: '側邊導航',
head: '頂部導航',
content: {
title: '內容區域寬度',
fluid: '流式',
fixed: '定寬'
},
fixedHeader: '固定Header',
fixedSideBar: '固定側邊欄',
},
other: {
title: '其他設置',
weekMode: '色弱模式',
multiPages: '多頁簽模式'
},
animate: {
title: '頁面切換動畫',
effect: '動畫效果',
direction: '動畫方向'
},
copy: '拷貝配置'
},
US: {
theme: {
title: 'Page Style Setting',
light: 'Light Style',
dark: 'Dark Style',
color: 'Theme Color'
},
navigate: {
title: 'Navigation Mode',
side: 'Side Menu Layout',
head: 'Top Menu Layout',
content: {
title: 'Content Width',
fluid: 'Fluid',
fixed: 'Fixed'
},
fixedHeader: 'Fixed Header',
fixedSideBar: 'Fixed SideBar',
},
other: {
title: 'Other Setting',
weekMode: 'Week Mode',
multiPages: 'Multi Pages'
},
animate: {
title: 'Page Toggle Animation',
effect: 'Effect',
direction: 'Direction'
},
copy: 'Copy Setting'
}
}
}

View File

@ -5,7 +5,7 @@ module.exports = {
theme: 'dark', theme: 'dark',
layout: 'side', layout: 'side',
fixedHeader: false, fixedHeader: false,
fixedSider: true, fixedSideBar: true,
weekMode: false, weekMode: false,
multiPage: false, multiPage: false,
systemName: 'Vue Antd Admin', systemName: 'Vue Antd Admin',

View File

@ -1,5 +1,5 @@
<template> <template>
<a-layout :class="['global-layout', fixedSider ? 'fixed-sider' : '']"> <a-layout :class="['global-layout', fixedSideBar ? 'fixed-side-bar' : '']">
<drawer v-if="isMobile" :openDrawer="collapsed" @change="onDrawerChange"> <drawer v-if="isMobile" :openDrawer="collapsed" @change="onDrawerChange">
<sider-menu :theme="theme" :menuData="menuData" :collapsed="false" :collapsible="false" @menuSelect="onMenuSelect"/> <sider-menu :theme="theme" :menuData="menuData" :collapsed="false" :collapsible="false" @menuSelect="onMenuSelect"/>
</drawer> </drawer>
@ -55,7 +55,7 @@ export default {
} }
}, },
computed: { computed: {
...mapState('setting', ['isMobile', 'theme', 'layout', 'footerLinks', 'copyright', 'fixedHeader', 'fixedSider']), ...mapState('setting', ['isMobile', 'theme', 'layout', 'footerLinks', 'copyright', 'fixedHeader', 'fixedSideBar']),
sideMenuWidth() { sideMenuWidth() {
return this.collapsed ? '80px' : '256px' return this.collapsed ? '80px' : '256px'
}, },
@ -88,7 +88,7 @@ export default {
<style lang="less" scoped> <style lang="less" scoped>
.global-layout{ .global-layout{
&.fixed-sider{ &.fixed-side-bar{
height: 100vh; height: 100vh;
.global-layout-main{ .global-layout-main{
overflow: scroll; overflow: scroll;

View File

@ -31,8 +31,8 @@ export default {
setFixedHeader(state, fixedHeader) { setFixedHeader(state, fixedHeader) {
state.fixedHeader = fixedHeader state.fixedHeader = fixedHeader
}, },
setFixedSider(state, fixedSider) { setFixedSideBar(state, fixedSideBar) {
state.fixedSider = fixedSider state.fixedSideBar = fixedSideBar
}, },
setLang(state, lang) { setLang(state, lang) {
state.lang = lang state.lang = lang