From 066ab7ec229fc71415285d993d883dca4e3225f7 Mon Sep 17 00:00:00 2001 From: iczer <1126263215@qq.com> Date: Tue, 16 Jun 2020 18:41:07 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E:=20=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E5=8A=A8=E6=80=81=E4=BF=AE=E6=94=B9=E4=B8=BB=E9=A2=98=E8=89=B2?= =?UTF-8?q?=E5=8A=9F=E8=83=BD=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 6 +++- src/components/checkbox/ColorCheckbox.vue | 35 +++++++++++++++++------ src/components/setting/Setting.vue | 10 ++++--- src/components/tool/FooterToolBar.vue | 4 +-- src/main.js | 2 +- src/pages/components/Palette.vue | 2 +- src/theme/default/color.less | 4 +++ src/theme/default/index.less | 1 + src/theme/index.less | 2 ++ src/theme/theme.less | 1 + src/utils/themeUtil.js | 17 +++++++++++ vue.config.js | 26 +++++++++++++++++ yarn.lock | 16 ++++++++++- 13 files changed, 107 insertions(+), 19 deletions(-) create mode 100644 src/theme/default/color.less create mode 100644 src/theme/default/index.less create mode 100644 src/theme/index.less create mode 100644 src/theme/theme.less create mode 100644 src/utils/themeUtil.js diff --git a/package.json b/package.json index e342988..9abeb5d 100644 --- a/package.json +++ b/package.json @@ -24,6 +24,7 @@ "vuex": "^3.4.0" }, "devDependencies": { + "@ant-design/colors": "^4.0.0", "@vue/cli-plugin-babel": "^4.4.0", "@vue/cli-plugin-eslint": "^4.4.0", "@vue/cli-service": "^4.4.0", @@ -35,6 +36,7 @@ "style-resources-loader": "^1.3.2", "vue-cli-plugin-style-resources-loader": "^0.1.4", "vue-template-compiler": "^2.6.11", + "webpack-theme-color-replacer": "^1.3.12", "whatwg-fetch": "^3.0.0" }, "eslintConfig": { @@ -52,6 +54,8 @@ "rules": {} }, "browserslist": [ - "ie 8" + "> 1%", + "last 2 versions", + "not ie <= 10" ] } diff --git a/src/components/checkbox/ColorCheckbox.vue b/src/components/checkbox/ColorCheckbox.vue index 72cdc49..b164015 100644 --- a/src/components/checkbox/ColorCheckbox.vue +++ b/src/components/checkbox/ColorCheckbox.vue @@ -42,10 +42,19 @@ const Group = { } }, watch: { - values: function (newVal, oldVal) { - // 此条件是为解决单选时,触发两次chang事件问题 - if (!(newVal.length === 1 && oldVal.length === 1 && newVal[0] === oldVal[0]) || this.multiple) { - this.$emit('change', this.values, this.colors) + values() { + this.$emit('change', this.values, this.colors) + }, + defaultValues(value) { + if (this.multiple) { + this.options.forEach(item => { + item.sChecked = value.indexOf(item.value) > -1 + }) + } else { + this.options.forEach(item => { + let first = value[0] + item.sChecked = first && first == item.value + }) } } }, @@ -55,9 +64,8 @@ const Group = { this.values = this.values.filter(item => item !== option.value) } else { if (!this.multiple) { - this.values = [option.value] this.options.forEach(item => { - if (item.value !== option.value) { + if (item.value != option.value) { item.sChecked = false } }) @@ -97,9 +105,11 @@ export default { }, data () { return { - sChecked: this.checked + sChecked: this.initChecked() } }, + computed: { + }, inject: ['groupContext'], watch: { 'sChecked': function () { @@ -118,13 +128,22 @@ export default { created () { const groupContext = this.groupContext if (groupContext) { - this.sChecked = groupContext.defaultValues.indexOf(this.value) >= 0 groupContext.options.push(this) } }, methods: { toggle () { this.sChecked = !this.sChecked + }, + initChecked() { + let groupContext = this.groupContext + if (!groupContext) { + return this.check + }else if (groupContext.multiple) { + return groupContext.defaultValues.indexOf(this.value) > -1 + } else { + return groupContext.defaultValues[0] == this.value + } } } } diff --git a/src/components/setting/Setting.vue b/src/components/setting/Setting.vue index e28f533..97c0f96 100644 --- a/src/components/setting/Setting.vue +++ b/src/components/setting/Setting.vue @@ -7,8 +7,8 @@ - - + + @@ -62,7 +62,7 @@ - 拷贝代码 + 拷贝代码 @@ -71,6 +71,7 @@ import SettingItem from './SettingItem' import ColorCheckbox from '../checkbox/ColorCheckbox' import ImgCheckbox from '../checkbox/ImgCheckbox' import Clipboard from 'clipboard' +import themeUtil from '../../utils/themeUtil'; const ColorCheckboxGroup = ColorCheckbox.Group const ImgCheckboxGroup = ImgCheckbox.Group @@ -86,7 +87,8 @@ export default { methods: { onColorChange (values, colors) { if (colors.length > 0) { - this.$message.info(`您选择了主题色 ${colors}`) + let closeMessage = this.$message.loading(`您选择了主题色 ${colors}, 正在切换...`) + themeUtil.changeThemeColor(colors[0]).then(closeMessage) } }, setTheme (values) { diff --git a/src/components/tool/FooterToolBar.vue b/src/components/tool/FooterToolBar.vue index 12a0dae..d82cfb0 100644 --- a/src/components/tool/FooterToolBar.vue +++ b/src/components/tool/FooterToolBar.vue @@ -21,12 +21,10 @@ export default { width: 100%; bottom: 0; right: 0; - height: 56px; - line-height: 56px; box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.03); background: #fff; border-top: 1px solid #e8e8e8; - padding: 0 24px; + padding: 12px 24px; z-index: 9; } diff --git a/src/main.js b/src/main.js index 11052a5..314c325 100644 --- a/src/main.js +++ b/src/main.js @@ -1,7 +1,7 @@ import Vue from 'vue' import App from './App.vue' import router from './router/lazy' -import 'ant-design-vue/dist/antd.css' +import './theme/index.less' import Antd from 'ant-design-vue' import Viser from 'viser-vue' import axios from 'axios' diff --git a/src/pages/components/Palette.vue b/src/pages/components/Palette.vue index 1e659f4..972a0cc 100644 --- a/src/pages/components/Palette.vue +++ b/src/pages/components/Palette.vue @@ -1,6 +1,6 @@