| | |
| | | } |
| | | |
| | | function delFile(id) { |
| | | return $$.ax.request({ url: `fileInfo/deleteFileById`, type: 'delete', service: 'sys', data: { id } }); |
| | | return $$.ax.request({ url: `fileInfo/deleteFileById`, type: 'get', service: 'sys', data: { id } }); |
| | | } |
| | | |
| | | export default function Examine(props) { |
| | |
| | | <Col span={24}> |
| | | <div><div className="title-text">附件材料</div></div> |
| | | <div style={{ color: '#1A6FB8' }}> |
| | | <img src={link} alt="" className="title-file" />{infoData?.file || '-'} |
| | | {infoData?.fileInfoList?.map(res => { |
| | | return res.fileList.map((result, resIndex) => { |
| | | return <a href="your-link-here.html" target="_blank"> |
| | | <img src={link} alt="" className="title-file" />{result.trueName} |
| | | {resIndex !== res.fileList.length - 1 && <>,</>} |
| | | </a> |
| | | }) |
| | | })} |
| | | </div> |
| | | </Col> |
| | | <Col span={24}> |