新增: 全局色弱模式;

master
iczer 5 years ago
parent 5bbe94728e
commit 3d568c6caa
  1. 21
      src/App.vue
  2. 7
      src/components/setting/Setting.vue
  3. 4
      src/components/transition/PageToggleTransition.vue
  4. 11
      src/config/index.js
  5. 2
      src/layouts/GlobalLayout.vue
  6. 24
      src/layouts/HeaderNotice.vue
  7. 25
      src/layouts/HeaderlAvatar.vue
  8. 19
      src/store/modules/setting.js
  9. 1
      src/theme/default/index.less
  10. 4
      src/theme/default/style.less

@ -6,6 +6,7 @@
<script> <script>
import enquireScreen from './utils/device' import enquireScreen from './utils/device'
import {mapState} from 'vuex'
export default { export default {
name: 'App', name: 'App',
@ -14,6 +15,26 @@ export default {
enquireScreen(isMobile => { enquireScreen(isMobile => {
_this.$store.commit('setting/setDevice', isMobile) _this.$store.commit('setting/setDevice', isMobile)
}) })
},
mounted() {
this.setWeekModeTheme(this.weekMode)
},
watch: {
weekMode(val) {
this.setWeekModeTheme(val)
}
},
computed: {
...mapState('setting', ['weekMode'])
},
methods: {
setWeekModeTheme(weekMode) {
if (weekMode) {
document.body.classList.add('week-mode')
} else {
document.body.classList.remove('week-mode')
}
}
} }
} }
</script> </script>

@ -42,7 +42,7 @@
<a-list :split="false"> <a-list :split="false">
<a-list-item> <a-list-item>
色弱模式 色弱模式
<a-switch slot="actions" size="small" /> <a-switch :checked="weekMode" slot="actions" size="small" @change="setWeekMode" />
</a-list-item> </a-list-item>
<a-list-item> <a-list-item>
显示抽屉按钮 显示抽屉按钮
@ -110,7 +110,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']) ...mapState('setting', ['animates', 'multiPage', 'weekMode'])
}, },
methods: { methods: {
onColorChange (values, colors) { onColorChange (values, colors) {
@ -140,6 +140,9 @@ export default {
setMultiPage (checked) { setMultiPage (checked) {
this.$store.commit('setting/setMultiPage', checked) this.$store.commit('setting/setMultiPage', checked)
}, },
setWeekMode(checked) {
this.$store.commit('setting/setWeekMode', checked)
},
setAnimate() { setAnimate() {
this.direction = this.directions[0] this.direction = this.directions[0]
let animate = { let animate = {

@ -8,7 +8,7 @@
</template> </template>
<script> <script>
import {animates} from '@/config' import animates from '@/config/animates'
export default { export default {
name: 'PageToggleTransition', name: 'PageToggleTransition',
@ -16,7 +16,7 @@
animate: { animate: {
type: String, type: String,
validator(value) { validator(value) {
return animates.find(item => item.name == value) != -1 return animates.findIndex(item => item.name == value) != -1
}, },
default: 'bounce' default: 'bounce'
}, },

@ -1,7 +1,16 @@
// 系统配置 // 系统配置
module.exports = { module.exports = {
themeColor: '#1890ff', themeColor: '#1890ff',
animates: require('./animates'), theme: 'dark',
layout: 'side',
weekMode: false,
multiPage: false,
systemName: 'Vue Antd Admin',
copyright: '2018 ICZER 工作室出品',
animate: {
name: 'bounce',
direction: 'left'
},
footerLinks: [ footerLinks: [
{link: 'https://pro.ant.design', name: 'Pro首页'}, {link: 'https://pro.ant.design', name: 'Pro首页'},
{link: 'https://github.com/iczer/vue-antd-admin', icon: 'github'}, {link: 'https://github.com/iczer/vue-antd-admin', icon: 'github'},

@ -18,7 +18,7 @@
</div> </div>
</a-layout-content> </a-layout-content>
<a-layout-footer style="padding: 0px"> <a-layout-footer style="padding: 0px">
<global-footer :link-list="linkList" :copyright="copyright" /> <global-footer :link-list="footerLinks" :copyright="copyright" />
</a-layout-footer> </a-layout-footer>
</a-layout> </a-layout>
</a-layout> </a-layout>

@ -1,7 +1,7 @@
<template> <template>
<a-dropdown :trigger="['click']"> <a-dropdown :trigger="['click']">
<template slot="overlay"> <div slot="overlay">
<a-spin :spinning="loadding"> <a-spin :spinning="loading">
<a-tabs :tabBarStyle="{textAlign: 'center'}" :style="{backgroundColor: 'white', width: '297px'}"> <a-tabs :tabBarStyle="{textAlign: 'center'}" :style="{backgroundColor: 'white', width: '297px'}">
<a-tab-pane tab="通知" key="1" :style="{padding: '0 24px'}"> <a-tab-pane tab="通知" key="1" :style="{padding: '0 24px'}">
<a-list> <a-list>
@ -30,7 +30,7 @@
</a-tab-pane> </a-tab-pane>
</a-tabs> </a-tabs>
</a-spin> </a-spin>
</template> </div>
<span @click="fetchNotice" class="header-notice"> <span @click="fetchNotice" class="header-notice">
<a-badge count="12"> <a-badge count="12">
<a-icon :class="['header-notice-icon', theme]" type="bell" /> <a-icon :class="['header-notice-icon', theme]" type="bell" />
@ -40,34 +40,36 @@
</template> </template>
<script> <script>
import {mapState} from 'vuex'
export default { export default {
name: 'HeaderNotice', name: 'HeaderNotice',
data () { data () {
return { return {
loadding: false loading: false
} }
}, },
computed: { computed: {
theme () { ...mapState('setting', ['layout', 'theme']),
return this.$store.state.setting.layout === 'side' ? 'light' : this.$store.state.setting.theme theme() {
} return this.layout == 'side' ? 'light' : this.theme
},
}, },
methods: { methods: {
fetchNotice () { fetchNotice () {
if (this.loadding) { if (this.loading) {
this.loadding = false this.loading = false
return return
} }
this.loadding = true this.loadding = true
setTimeout(() => { setTimeout(() => {
this.loadding = false this.loadding = false
}, 2000) }, 1000)
} }
} }
} }
</script> </script>
<style lang="less"> <style lang="less" scoped>
.header-notice{ .header-notice{
display: inline-block; display: inline-block;
transition: all 0.3s; transition: all 0.3s;

@ -1,10 +1,10 @@
<template> <template>
<a-dropdown style="display: inline-block; height: 100%; vertical-align: initial" > <a-dropdown class="header-avatar">
<span style="cursor: pointer"> <span style="cursor: pointer">
<a-avatar class="avatar" size="small" shape="circle" :src="currUser.avatar"/> <a-avatar class="avatar" size="small" shape="circle" :src="user.avatar"/>
<span>{{currUser.name}}</span> <span>{{user.name}}</span>
</span> </span>
<a-menu style="width: 150px" slot="overlay"> <a-menu :class="['avatar-menu']" slot="overlay">
<a-menu-item> <a-menu-item>
<a-icon type="user" /> <a-icon type="user" />
<span>个人中心</span> <span>个人中心</span>
@ -25,21 +25,30 @@
</template> </template>
<script> <script>
import {mapState} from 'vuex'
export default { export default {
name: 'HeaderAvatar', name: 'HeaderAvatar',
computed: { computed: {
currUser () { ...mapState('setting', ['weekMode']),
return this.$store.state.account.user ...mapState('account', ['user']),
}
} }
} }
</script> </script>
<style lang="less" scoped> <style lang="less">
.header-avatar{
display: inline-block;
height: 100%;
vertical-align: initial;
}
.avatar{ .avatar{
margin: 20px 4px 20px 0; margin: 20px 4px 20px 0;
color: #1890ff; color: #1890ff;
background: hsla(0,0%,100%,.85); background: hsla(0,0%,100%,.85);
vertical-align: middle; vertical-align: middle;
} }
.avatar-menu{
width: 150px;
}
</style> </style>

@ -1,20 +1,10 @@
import {footerLinks, animates, themeColor} from '@/config' import config from '@/config'
export default { export default {
namespaced: true, namespaced: true,
state: { state: {
isMobile: false, isMobile: false,
theme: 'dark', animates: require('@/config/animates'),
themeColor, ...config
layout: 'side',
systemName: 'Vue Antd Admin',
copyright: '2018 ICZER 工作室出品',
footerLinks: footerLinks,
multiPage: true,
animates: animates,
animate: {
name: 'bounce',
direction: 'left'
}
}, },
mutations: { mutations: {
setDevice (state, isMobile) { setDevice (state, isMobile) {
@ -34,6 +24,9 @@ export default {
}, },
setThemeColor (state, color) { setThemeColor (state, color) {
state.themeColor = color state.themeColor = color
},
setWeekMode(state, weekMode) {
state.weekMode = weekMode
} }
} }
} }

@ -1 +1,2 @@
@import "color"; @import "color";
@import "style";

@ -0,0 +1,4 @@
.week-mode{
overflow: hidden;
filter: invert(80%);
}
Loading…
Cancel
Save