From 49f71861678784279f7f3db2e75f7b9a83b9ede4 Mon Sep 17 00:00:00 2001 From: Lei OT Date: Mon, 20 Oct 2025 16:41:52 +0800 Subject: [PATCH] =?UTF-8?q?perf:=20=E9=82=AE=E4=BB=B6=E5=88=97=E8=A1=A8:?= =?UTF-8?q?=20=E8=AE=A2=E5=8D=95=E8=8A=82=E7=82=B9:=20=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E9=82=AE=E4=BB=B6=E6=96=87=E4=BB=B6=E5=A4=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/orders/components/MailBox.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/orders/components/MailBox.jsx b/src/views/orders/components/MailBox.jsx index 4cee324..d46716a 100644 --- a/src/views/orders/components/MailBox.jsx +++ b/src/views/orders/components/MailBox.jsx @@ -158,7 +158,7 @@ const MailBox = ({ mailboxDir, onMailItemClick, ...props }) => { const mailItemRender = (item) => { const isOrderNode = mailboxDir.COLI_SN > 0 const orderNumber = isEmpty(item.MAI_COLI_ID) || isOrderNode ? '' : item.MAI_COLI_ID + ' - ' - const folderName = (item.showFolder) ? `[${item.FDir}] ` : '' + const folderName = (item.showFolder || isOrderNode) ? [{item.FDir}]   : '' const orderMailType = item.MAT_Name ? {item.MAT_Name} : '' const countryName = isEmpty(item.CountryCN) ? '' : '[' + item.CountryCN + '] ' const mailStateClass = item.MOI_ReadState === 0 ? 'font-black text-emerald-600' : ''