diff --git a/src/layout/components/TagsView/index.vue b/src/layout/components/TagsView/index.vue index 012d1a0..f67acf1 100644 --- a/src/layout/components/TagsView/index.vue +++ b/src/layout/components/TagsView/index.vue @@ -306,7 +306,7 @@ export default { .contextmenu { margin: 0; // 右键菜单金属背景 - background: #454c51; + background: #fff; border: 1px solid #a0a6ad; z-index: 3000; position: absolute; diff --git a/src/views/components/CurrentTime.vue b/src/views/components/CurrentTime.vue index 3a6565e..83a395e 100644 --- a/src/views/components/CurrentTime.vue +++ b/src/views/components/CurrentTime.vue @@ -30,7 +30,7 @@ export default { // 日期时间格式化(保持原逻辑不变) updateDateTime() { const now = new Date(); - // 格式化日期:2024-05-20 星期一 + // 格式化日期:2024-05-20 Monday(罗马风格) this.currentDate = now.toLocaleDateString("zh-CN", { year: "numeric", month: "2-digit", diff --git a/src/views/index.vue b/src/views/index.vue index 152ecbf..65d6b27 100644 --- a/src/views/index.vue +++ b/src/views/index.vue @@ -465,14 +465,14 @@ $theme-text-gray: #c9cdcf; .header-left { .system-title { - color: #fff; + color: #000; font-size: 28px; font-weight: 600; margin: 0 0 8px 0; } .system-subtitle { - color: rgba(255, 255, 255, 0.9); + color: #000; font-size: 14px; margin: 0; } diff --git a/src/views/system/user/index.vue b/src/views/system/user/index.vue index 831d457..7525b82 100644 --- a/src/views/system/user/index.vue +++ b/src/views/system/user/index.vue @@ -1,97 +1,125 @@