From 2882409ce2e572d557be0f0e5571cad386e467fd Mon Sep 17 00:00:00 2001 From: chansee97 Date: Wed, 27 Mar 2024 00:21:11 +0800 Subject: [PATCH] feat: support change multiple colors --- package.json | 2 + src/layouts/BasicLayout/index.vue | 2 +- src/layouts/components/header/Setting.vue | 73 ++++++++++++++-- src/store/app/index.ts | 102 +++++++++++++++++++++- src/store/app/theme.json | 21 ++++- src/views/userCenter/index.vue | 4 +- 6 files changed, 189 insertions(+), 15 deletions(-) diff --git a/package.json b/package.json index 0182cee..6cf365e 100644 --- a/package.json +++ b/package.json @@ -53,6 +53,7 @@ "@tinymce/tinymce-vue": "^5.1.1", "@vueuse/core": "^10.9.0", "alova": "^2.17.1", + "chroma-js": "^2.4.2", "echarts": "^5.5.0", "md-editor-v3": "^4.11.3", "nprogress": "^0.2.0", @@ -67,6 +68,7 @@ "@antfu/eslint-config": "^2.8.3", "@iconify-json/icon-park-outline": "^1.1.15", "@iconify/vue": "^4.1.1", + "@types/chroma-js": "^2.4.4", "@types/node": "^20.11.28", "@types/nprogress": "^0.2.3", "@types/qs": "^6.9.12", diff --git a/src/layouts/BasicLayout/index.vue b/src/layouts/BasicLayout/index.vue index 6238bfd..fc46383 100644 --- a/src/layouts/BasicLayout/index.vue +++ b/src/layouts/BasicLayout/index.vue @@ -31,7 +31,7 @@ const appStore = useAppStore() :collapsed="appStore.collapsed" :collapsed-width="64" collapse-mode="width" - :width="220" + :width="240" :inverted="appStore.invertedSider" > diff --git a/src/layouts/components/header/Setting.vue b/src/layouts/components/header/Setting.vue index 9c51419..f8f312a 100644 --- a/src/layouts/components/header/Setting.vue +++ b/src/layouts/components/header/Setting.vue @@ -38,6 +38,38 @@ const transitionSelectorOptions = [ value: 'fade', }, ] + +const palette = [ + '#ffb8b8', + '#d03050', + '#F0A020', + '#fff200', + '#ffda79', + '#18A058', + '#006266', + '#22a6b3', + '#18dcff', + '#2080F0', + '#c56cf0', + '#be2edd', + '#706fd3', + '#4834d4', + '#130f40', + '#4b4b4b', +] + +function resetSetting() { + window.$dialog.warning({ + title: '警告', + content: '你确定?', + positiveText: '确定', + negativeText: '不确定', + onPositiveClick: () => { + appStore.resetAlltheme() + window.$message.success('重置成功') + }, + }) +}