From 29a9fba4cd9f6881c9096c13c6ef24df36c183fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=9D=E5=BF=97=E9=91=AB?= <1204505056@qq.com> Date: Sun, 19 Jul 2020 20:04:53 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=BB=E9=A2=98=E9=85=8D=E7=BD=AE=E5=A4=A7?= =?UTF-8?q?=E7=89=88=E6=9C=AC=E8=BF=AD=E4=BB=A3=E6=8E=88=E6=9D=83=E7=89=88?= =?UTF-8?q?=E6=9C=AC=E5=A2=9E=E5=8A=A0=E6=B5=B7=E6=B4=8B=E4=B9=8B=E5=BF=83?= =?UTF-8?q?=E3=80=81=E7=BB=BF=E8=8D=AB=E6=93=8D=E5=9C=BA=E3=80=81=E8=8D=A3?= =?UTF-8?q?=E8=80=80=E5=85=B8=E8=97=8F=E4=B8=BB=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 4 ++-- src/store/modules/settings.js | 3 ++- src/styles/variables.scss | 8 -------- 3 files changed, 4 insertions(+), 11 deletions(-) diff --git a/package.json b/package.json index 7ed7103..915ca89 100644 --- a/package.json +++ b/package.json @@ -73,7 +73,7 @@ "zx-count": "^0.3.7", "zx-icon": "^1.1.8", "zx-keel": "^0.9.4", - "zx-layouts": "^0.6.5", + "zx-layouts": "^0.6.6", "zx-magnifie": "^0.4.0", "zx-markdown-editor": "^0.0.2", "zx-player": "^0.9.6", @@ -92,7 +92,7 @@ "autoprefixer": "^9.8.5", "babel-eslint": "^10.1.0", "compression-webpack-plugin": "^4.0.0", - "eslint": "^7.4.0", + "eslint": "^7.5.0", "eslint-plugin-prettier": "^3.1.4", "eslint-plugin-vue": "^6.2.2", "filemanager-webpack-plugin": "^2.0.5", diff --git a/src/store/modules/settings.js b/src/store/modules/settings.js index e73a03c..a4d4fa9 100644 --- a/src/store/modules/settings.js +++ b/src/store/modules/settings.js @@ -6,7 +6,8 @@ import defaultSettings from "@/config/settings"; const { tagsBar, logo, layout, header, themeBar, skeleton } = defaultSettings; -const theme = JSON.parse(localStorage.getItem("BYUI-VUE-THEME")) || ""; +const theme = + JSON.parse(localStorage.getItem("vue-admin-beautiful-theme")) || ""; const state = { tagsBar: theme.tagsBar || tagsBar, logo, diff --git a/src/styles/variables.scss b/src/styles/variables.scss index 9aedc97..701998c 100644 --- a/src/styles/variables.scss +++ b/src/styles/variables.scss @@ -79,12 +79,4 @@ $base-transition-time: 0.2s; menu-color-active: $base-menu-color-active; //菜单背景色变量导出 menu-background: $base-menu-background; - //菜单选中背景色变量导出 - menu-background-active: $base-menu-background-active; - //多标签页选中背景色变量导出 - tag-background-active: $base-color-blue; - //默认按钮背景色变量导出 - button-background: $base-color-blue; - //分页选中背景色变量导出 - pagination-background-active: $base-color-blue; }