饼状图不在统计noreply

This commit is contained in:
eoao
2025-08-28 22:23:00 +08:00
parent 4c74e00493
commit 859bcf0d1c
2 changed files with 2 additions and 2 deletions
@@ -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;
+1 -1
View File
@@ -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),