From 3462a65b077e7e4661f6636235e0c0dff906bbbf Mon Sep 17 00:00:00 2001
From: buaixuexideshitongxue <2936013465@qq.com>
Date: Wed, 14 Jan 2026 19:04:33 +0800
Subject: [PATCH] =?UTF-8?q?=E5=B1=80=E9=95=BF=E4=BF=A1=E7=AE=B1=E6=9D=A5?=
=?UTF-8?q?=E6=BA=90=E6=94=B9=E4=B8=BAmailbox=E5=BA=93=E7=9A=84mail?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/data/Mailbox.vue | 30 ++++++++++++------------------
1 file changed, 12 insertions(+), 18 deletions(-)
diff --git a/src/views/data/Mailbox.vue b/src/views/data/Mailbox.vue
index bd68708..b6e3a4c 100644
--- a/src/views/data/Mailbox.vue
+++ b/src/views/data/Mailbox.vue
@@ -89,7 +89,9 @@
- {{ row.secondDeptName +'/'+row.threeDeptName }}
+
+ {{ row.secondDeptName }}{{ row.secondDeptName && row.threeDeptName ? '/' : '' }}{{ row.threeDeptName }}
+
-
- {{
- getDictLable(
- dict.processingStatus,
- row.mailState
- )
- }}
-
+
+ {{
+ row.mailState === 'completion' ? '已办结' :
+ row.mailState === 'processing' ? '办理中' :
+ row.mailState === 'delayed' ? '已延期' :
+ row.mailState === 'terminated' ? '已终止' :
+ '/'
+ }}
+