mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-05 19:41:37 +08:00
修复: 更换主题色时 box-shadow 颜色无法更换的bug;
This commit is contained in:
parent
2cef3795ac
commit
25e1c0f808
@ -8,14 +8,14 @@
|
|||||||
</setting-item>
|
</setting-item>
|
||||||
<setting-item title="主题色">
|
<setting-item title="主题色">
|
||||||
<color-checkbox-group @change="onColorChange" :defaultValues="['6']" :multiple="false">
|
<color-checkbox-group @change="onColorChange" :defaultValues="['6']" :multiple="false">
|
||||||
<color-checkbox color="rgb(245, 34, 45)" value="1" />
|
<color-checkbox color="#f5222d" value="1" />
|
||||||
<color-checkbox color="rgb(250, 84, 28)" value="2" />
|
<color-checkbox color="#fa541c" value="2" />
|
||||||
<color-checkbox color="rgb(250, 173, 20)" value="3" />
|
<color-checkbox color="#faad14" value="3" />
|
||||||
<color-checkbox color="rgb(19, 194, 194)" value="4" />
|
<color-checkbox color="#13c2c2" value="4" />
|
||||||
<color-checkbox color="rgb(82, 196, 26)" value="5" />
|
<color-checkbox color="#52c41a" value="5" />
|
||||||
<color-checkbox color="rgb(24, 144, 255)" value="6" />
|
<color-checkbox color="#1d92ff" value="6" />
|
||||||
<color-checkbox color="rgb(47, 84, 235)" value="7" />
|
<color-checkbox color="#2f54eb" value="7" />
|
||||||
<color-checkbox color="rgb(114, 46, 209)" value="8" />
|
<color-checkbox color="#722ed1" value="8" />
|
||||||
</color-checkbox-group>
|
</color-checkbox-group>
|
||||||
</setting-item>
|
</setting-item>
|
||||||
<a-divider/>
|
<a-divider/>
|
||||||
|
@ -1,14 +1,23 @@
|
|||||||
import client from 'webpack-theme-color-replacer/client'
|
const ThemeColorReplacer = require('webpack-theme-color-replacer')
|
||||||
import generate from '@ant-design/colors/lib/generate'
|
const client = require('webpack-theme-color-replacer/client')
|
||||||
|
const generate = require('@ant-design/colors/lib/generate').default
|
||||||
|
|
||||||
export default {
|
module.exports = {
|
||||||
primaryColor: '#1890ff',
|
primaryColor: '#1890ff',
|
||||||
|
getThemeColors(color) {
|
||||||
|
const lightens = new Array(9).fill().map((t, i) => {
|
||||||
|
return ThemeColorReplacer.varyColor.lighten(color, i / 10)
|
||||||
|
})
|
||||||
|
const palettes = generate(color)
|
||||||
|
const rgb = ThemeColorReplacer.varyColor.toNum3(color.replace('#', '')).join(',')
|
||||||
|
return palettes.concat(lightens).concat(rgb)
|
||||||
|
},
|
||||||
changeThemeColor (newColor) {
|
changeThemeColor (newColor) {
|
||||||
let lastColor = this.lastColor || this.primaryColor
|
let lastColor = this.lastColor || this.primaryColor
|
||||||
let options = {
|
let options = {
|
||||||
cssUrl: '/css/theme-colors.css',
|
cssUrl: '/css/theme-colors.css',
|
||||||
oldColors: generate(lastColor),
|
oldColors: this.getThemeColors(lastColor),
|
||||||
newColors: generate(newColor)
|
newColors: this.getThemeColors(newColor)
|
||||||
}
|
}
|
||||||
let promise = client.changer.changeColor(options)
|
let promise = client.changer.changeColor(options)
|
||||||
this.lastColor = lastColor
|
this.lastColor = lastColor
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 9.3 KiB |
Binary file not shown.
Before Width: | Height: | Size: 58 KiB |
Binary file not shown.
Before Width: | Height: | Size: 24 KiB |
@ -1,6 +1,6 @@
|
|||||||
// let path = require('path')
|
// let path = require('path')
|
||||||
const ThemeColorReplacer = require('webpack-theme-color-replacer')
|
const ThemeColorReplacer = require('webpack-theme-color-replacer')
|
||||||
const generate = require('@ant-design/colors/lib/generate').default
|
const getThemeColors = require('./src/utils/themeUtil').getThemeColors
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
pluginOptions: {
|
pluginOptions: {
|
||||||
@ -15,7 +15,7 @@ module.exports = {
|
|||||||
config.plugins.push(
|
config.plugins.push(
|
||||||
new ThemeColorReplacer({
|
new ThemeColorReplacer({
|
||||||
fileName: 'css/theme-colors.css',
|
fileName: 'css/theme-colors.css',
|
||||||
matchColors: generate('#1890ff')
|
matchColors: getThemeColors('#1890ff')
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user