From 5ea59d1a372fd7f6302f0119489a9f7254577248 Mon Sep 17 00:00:00 2001 From: ywyonui Date: Mon, 22 Sep 2025 18:12:37 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=B5=81=E7=A8=8B=E6=98=BE?= =?UTF-8?q?=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/LcglSp/index.vue | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/components/LcglSp/index.vue b/src/components/LcglSp/index.vue index f0632f4..7132c41 100644 --- a/src/components/LcglSp/index.vue +++ b/src/components/LcglSp/index.vue @@ -60,8 +60,8 @@ {{ csr.userName }} {{ csr.deptName }} - - {{ getSprStatusText(csr.approveStatus) }} + + {{ getCsrStatusText(csr.approveStatus) }} @@ -232,8 +232,11 @@ const getSprStatusText = (status: any) => { // 获取抄送人状态样式类 const getCsrStatusClass = (status: any) => { const statusMap: Record = { + pending: "status-pending", + approved: "status-approved", unread: "status-unread", read: "status-read", + cc_sent: "status-approved", }; return statusMap[status] || "status-default"; }; @@ -241,6 +244,9 @@ const getCsrStatusClass = (status: any) => { // 获取抄送人状态文本 const getCsrStatusText = (status: any) => { const statusMap: Record = { + pending: "待抄送", + approved: "已抄送", + cc_sent: "已抄送", unread: "未读", read: "已读", };