fix: 修复删除发件箱后还能看到的bug;修复前端页面打包失败的依赖问题 (#286)

This commit is contained in:
nil
2025-06-13 10:30:27 +08:00
committed by GitHub
parent 4504bdb490
commit 0fce027591
2 changed files with 4 additions and 0 deletions

View File

@@ -9,6 +9,7 @@
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore"
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"@wangeditor/editor": "^5.1.23",
"@wangeditor/editor-for-vue": "^5.1.12",
"axios": "^1.4.0",

View File

@@ -53,6 +53,9 @@ func genSQL(ctx *context.Context, count bool, tagInfo dto.SearchTag, keyword str
} else if tagInfo.Status == -1 {
if tagInfo.Type != 1 {
sql += " and ue.status = 0"
} else {
// 发件箱不展示已删除的邮件
sql += " and ue.status != 3"
}
}