Browse Source

完善样式

dev
dengyinhuan 2 years ago
parent
commit
51cfccbaf8
  1. 15
      web/client/src/sections/fillion/containers/luzheng.js

15
web/client/src/sections/fillion/containers/luzheng.js

@ -106,11 +106,16 @@ function Assess(props) {
dataIndex: 'picfile', dataIndex: 'picfile',
key: 'picfile', key: 'picfile',
render:(t,r)=>{ render:(t,r)=>{
return r?.picfile?.map(i=>{ if(r?.picfile){
return <span style={{marginRight:10}}> return r?.picfile?.map(i=>{
<Image src={i?.url} width={80}/> return <span style={{marginRight:10}}>
</span> <Image src={i?.url} width={80}/>
}) </span>
})
}else{
return '--'
}

Loading…
Cancel
Save