From 859bcf0d1cd838a9ff3af15e18723cf0f41d2319 Mon Sep 17 00:00:00 2001 From: eoao Date: Thu, 28 Aug 2025 22:23:00 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A5=BC=E7=8A=B6=E5=9B=BE=E4=B8=8D=E5=9C=A8?= =?UTF-8?q?=E7=BB=9F=E8=AE=A1noreply?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mail-vue/src/components/email-scroll/index.vue | 2 +- mail-worker/src/service/analysis-service.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mail-vue/src/components/email-scroll/index.vue b/mail-vue/src/components/email-scroll/index.vue index 05b521b..691dce8 100644 --- a/mail-vue/src/components/email-scroll/index.vue +++ b/mail-vue/src/components/email-scroll/index.vue @@ -911,7 +911,7 @@ function loadData() { } .del-status { - color: var(--el-color-danger); + color: var(--el-color-info); display: flex; align-items: center; justify-content: center; diff --git a/mail-worker/src/service/analysis-service.js b/mail-worker/src/service/analysis-service.js index 0a49c68..d8391df 100644 --- a/mail-worker/src/service/analysis-service.js +++ b/mail-worker/src/service/analysis-service.js @@ -38,7 +38,7 @@ const analysisService = { orm(c) .select({ name: email.name, total: count() }) .from(email) - .where(and(eq(email.type, emailConst.type.RECEIVE), isNotNull(email.name), ne(email.name,''))) + .where(and(eq(email.type, emailConst.type.RECEIVE), isNotNull(email.name),ne(email.name,'noreply'), ne(email.name,''))) .groupBy(email.name) .orderBy(desc(count())) .limit(6),