From 51cfccbaf8d5a4f3f08177281783293b26d62459 Mon Sep 17 00:00:00 2001 From: dengyinhuan Date: Fri, 4 Aug 2023 17:50:42 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E5=96=84=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/sections/fillion/containers/luzheng.js | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/web/client/src/sections/fillion/containers/luzheng.js b/web/client/src/sections/fillion/containers/luzheng.js index 7faf9b13..5158c3e7 100644 --- a/web/client/src/sections/fillion/containers/luzheng.js +++ b/web/client/src/sections/fillion/containers/luzheng.js @@ -106,11 +106,16 @@ function Assess(props) { dataIndex: 'picfile', key: 'picfile', render:(t,r)=>{ - return r?.picfile?.map(i=>{ - return - - - }) + if(r?.picfile){ + return r?.picfile?.map(i=>{ + return + + + }) + }else{ + return '--' + } +