From a45ba04d32abf1289ecf877fd4d840d4a9289b22 Mon Sep 17 00:00:00 2001 From: liushilong <2224574157@qq.com> Date: Thu, 11 Apr 2024 18:43:41 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BF=AE=E6=94=B9=E6=A0=B7=E5=BC=8F?= =?UTF-8?q?=E7=BC=BA=E9=99=B7=E5=B9=B6=E5=AE=8C=E5=96=84=E5=9B=BE=E5=AE=A1?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E9=80=82=E9=85=8D=E5=90=8E=E7=AB=AF=E5=AD=97?= =?UTF-8?q?=E6=AE=B5=E5=8F=98=E5=8A=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/settings.json | 3 +- src/App.vue | 44 +- src/layout/index.vue | 30 +- src/views/home/aside/comp/AdvanceFilter.vue | 46 +- .../home/aside/comp/items/Similarity.vue | 8 +- src/views/home/aside/comp/items/Time.vue | 90 ++-- src/views/home/content/Content.vue | 9 +- .../home/content/modal/CheckingTaskModal.vue | 128 +++-- .../home/content/modal/LoginSuccessModal.vue | 8 +- .../content/modal/QueryRepeatedTasksModal.vue | 64 +-- src/views/home/index.vue | 2 +- src/views/worksheet/aside/Aside.vue | 147 +++--- src/views/worksheet/aside/WorkSheetList.vue | 10 +- src/views/worksheet/content/Content.vue | 460 +++++++++++------- 14 files changed, 624 insertions(+), 425 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 65d1d01..947c6ee 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -38,5 +38,6 @@ "json", "jsonc", "yaml" - ] + ], + "vue3snippets.enable-compile-vue-file-on-did-save-code": true } diff --git a/src/App.vue b/src/App.vue index 3fa67ec..edb37dd 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,13 +1,13 @@ @@ -80,14 +78,28 @@ const getThemeOverrides = computed(() => { color: #666666 !important; font-size: 14px !important; } -::v-deep(.n-base-clear > .n-base-clear__clear){ +::v-deep(.n-base-clear > .n-base-clear__clear) { color: #c9c9c9 !important; } -.n-form-item.n-form-item--top-labelled .n-form-item-label{ +.n-form-item.n-form-item--top-labelled .n-form-item-label { flex-direction: row-reverse !important; justify-content: flex-end !important; } -.n-form-item .n-form-item-label .n-form-item-label__asterisk{ - transform:rotate(-90deg) !important; +.n-form-item .n-form-item-label .n-form-item-label__asterisk { + transform: rotate(-90deg) !important; +} +.n-scrollbar-content { + padding: 0 7.97px 0 4px; +} +.n-form-item .n-form-item-label { + font-size: 14px !important; + color: #333333 !important; +} +.n-slider-dots > .n-slider-dot:nth-child(2) { + display: none !important; +} +.n-collapse-item-arrow i svg { + width: 14px !important; + height: 14px !important; } diff --git a/src/layout/index.vue b/src/layout/index.vue index a2f8f4d..4165bfe 100644 --- a/src/layout/index.vue +++ b/src/layout/index.vue @@ -1,21 +1,17 @@