From e3383b507f696289f11ec429b2cb096e574c8dd2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E4=BD=95=E7=BE=8E=E8=8D=A3?=
<10755671+mei-rong-he@user.noreply.gitee.com>
Date: Tue, 16 Jun 2026 10:00:43 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=BE=A8=E8=AF=86=E8=A1=A8?=
=?UTF-8?q?=E5=AD=97=E6=AE=B5?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/components/CustomPages/SK/SK033ShowPrint.js | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/components/CustomPages/SK/SK033ShowPrint.js b/src/components/CustomPages/SK/SK033ShowPrint.js
index e2c1718..71a1569 100644
--- a/src/components/CustomPages/SK/SK033ShowPrint.js
+++ b/src/components/CustomPages/SK/SK033ShowPrint.js
@@ -117,7 +117,9 @@ class SK033ShowPrint extends React.Component {
{moment(data.START_DATE).format('YYYY-MM-DD')}
{data.END_DATE ? moment(data.END_DATE).format('YYYY-MM-DD') : null}
{data.CONTENTS}
- {data.Nav_Require ? data.Nav_Require.NAME : ''}
+ { data?.Nav_Requires && data?.Nav_Requires?.map((item2, i) => {
+ return item2?.Nav_Require?.NAME + ' '
+ })}
{
showFiles(data?.Nav_Files, config.picServerHost, this)
}