From aef13be82eb857ca0d17468e17a4618805cd94cb Mon Sep 17 00:00:00 2001 From: lihui_ocr Date: Wed, 10 Apr 2024 10:43:55 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E5=9B=BE=E7=89=87=E6=A0=B7=E5=BC=8F?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/assets/icons/t9.svg | 48 ++++++++++++++++++++-------- src/views/task/content/Content.vue | 51 ++++++++++++++++++------------ 2 files changed, 64 insertions(+), 35 deletions(-) diff --git a/src/assets/icons/t9.svg b/src/assets/icons/t9.svg index adee966..3a07171 100644 --- a/src/assets/icons/t9.svg +++ b/src/assets/icons/t9.svg @@ -1,23 +1,43 @@ - - 可疑收藏夹 + + 可疑文件夹 - - - + + + + + + + - - - + + + + + + + + + + - - - - - - + + + + + + + + + + + + + + + diff --git a/src/views/task/content/Content.vue b/src/views/task/content/Content.vue index 3b23769..84b9cec 100644 --- a/src/views/task/content/Content.vue +++ b/src/views/task/content/Content.vue @@ -113,10 +113,10 @@ function handleKeydown(event) { else if (event.key === "ArrowRight") forwardHandler(); // 在这里执行右箭头的逻辑 else if (event.keyCode === 67) { - isFullScreen.value=false - - // batchModalRef.value.closeModal() - }else if (event.key === 'p' || event.key === 'P') { + isFullScreen.value = false; + + // batchModalRef.value.closeModal() + } else if (event.key === "p" || event.key === "P") { // 获取当前时间 const now = Date.now(); @@ -126,7 +126,7 @@ function handleKeydown(event) { clearTimeout(keyPressTimer); // 执行想要的操作 - approvalHandler() + approvalHandler(); // 重置上次按键时间 lastKeyPressTime = 0; @@ -141,7 +141,7 @@ function handleKeydown(event) { lastKeyPressTime = 0; }, doubleClickInterval); } - }else if (event.key === 'X' || event.key === 'X') { + } else if (event.key === "X" || event.key === "X") { // 获取当前时间 const now = Date.now(); @@ -151,7 +151,7 @@ function handleKeydown(event) { clearTimeout(keyPressTimer); // 执行想要的操作 - singleRejectHandler() + singleRejectHandler(); // 重置上次按键时间 lastKeyPressTime = 0; @@ -167,7 +167,6 @@ function handleKeydown(event) { }, doubleClickInterval); } } - } function setBatch(value: boolean) { @@ -599,17 +598,21 @@ function overTaskHandelr(item: any) {
+
@@ -854,9 +857,15 @@ function overTaskHandelr(item: any) {
-
+
{{ item[0].label }}
@@ -1308,7 +1317,7 @@ function overTaskHandelr(item: any) { border-radius: 8px; align-items: center; justify-content: center; - background-color: rgba(102, 102, 102, 0.5); + background-color: rgba(0, 0, 0, 0.5); } .info { @@ -1318,7 +1327,7 @@ function overTaskHandelr(item: any) { bottom: 16px; width: 136px; height: 119px; - background: rgba(216, 216, 216, 0.4); + background: rgba(216, 216, 216, 0.1); border-radius: 7px; padding: 16px 0 0 23px; color: #fff; @@ -1695,8 +1704,8 @@ function overTaskHandelr(item: any) { } } .viewlabel { - margin-top: 10px; - font-size: 14px; + margin-top: 10px; + font-size: 14px; font-family: PingFang SC, PingFang SC-Regular; font-weight: Regular; text-align: left; -- 2.39.3