mirror of
https://github.com/Jinnrry/PMail.git
synced 2025-09-26 19:31:21 +08:00
fix: 修复删除发件箱后还能看到的bug;修复前端页面打包失败的依赖问题 (#286)
This commit is contained in:
@@ -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",
|
||||
|
@@ -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"
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user