From 1981567c59bfdc01243730bf4b8d5a297966d291 Mon Sep 17 00:00:00 2001 From: lxy <10179281+lxy0722@user.noreply.gitee.com> Date: Tue, 30 Jul 2024 17:12:54 +0800 Subject: [PATCH] =?UTF-8?q?fixed=2092a17fa=20from=20https://gitee.com/lxy0?= =?UTF-8?q?722/django-vue3-admin/pulls/1=20=E8=A7=A3=E5=86=B3=E5=9C=A8?= =?UTF-8?q?=E6=B7=B1=E8=89=B2=E6=A8=A1=E5=BC=8F=E4=B8=8B=E7=9A=84=E8=83=8C?= =?UTF-8?q?=E6=99=AF=E8=89=B2=E6=98=BE=E7=A4=BA=E5=BC=82=E5=B8=B8=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/src/views/system/dept/components/DeptUserCom/index.vue | 3 ++- web/src/views/system/dept/index.vue | 2 +- web/src/views/system/menu/index.vue | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/web/src/views/system/dept/components/DeptUserCom/index.vue b/web/src/views/system/dept/components/DeptUserCom/index.vue index fb50ff90..f52db556 100644 --- a/web/src/views/system/dept/components/DeptUserCom/index.vue +++ b/web/src/views/system/dept/components/DeptUserCom/index.vue @@ -277,7 +277,8 @@ const { resetCrudOptions } = useCrud({ padding: 0 10px; border-radius: 8px 0 0 8px; box-sizing: border-box; - background-color: #fff; + color: var(--next-bg-topBarColor); + background-color: var(--el-fill-color-blank);; } .dept-user-com-table { height: calc(100% - 200px); diff --git a/web/src/views/system/dept/index.vue b/web/src/views/system/dept/index.vue index 60b803bc..52df92b1 100644 --- a/web/src/views/system/dept/index.vue +++ b/web/src/views/system/dept/index.vue @@ -133,7 +133,7 @@ onMounted(() => { } .dept-left { - background-color: #fff; + background-color: var(--el-fill-color-blank);; border-radius: 0 8px 8px 0; padding: 10px; } diff --git a/web/src/views/system/menu/index.vue b/web/src/views/system/menu/index.vue index 0637a3fe..f7d05bd6 100644 --- a/web/src/views/system/menu/index.vue +++ b/web/src/views/system/menu/index.vue @@ -138,7 +138,7 @@ onMounted(() => { .menu-box { height: 100%; padding: 10px; - background-color: #fff; + background-color: var(--el-fill-color-blank);; box-sizing: border-box; } -- Gitee