| | |
| | | import React, { useEffect, useState } from 'react'; |
| | | import { person, link } from '@/assets/images' |
| | | import { person1 } from '@/assets/images/icon' |
| | | |
| | | import PreviewImage from '@/components/PreviewImage'; |
| | | |
| | | |
| | | |
| | |
| | | item.fileInfoList?.map(res => { |
| | | if (res.ownerType == "22_00018-202") { |
| | | return res.fileList.map((result, resIndex) => { |
| | | return <a href="your-link-here.html" target="_blank"> |
| | | <img src={link} alt="" className="title-file" />{result.trueName} |
| | | return <div style={{display: 'inline-block'}}> |
| | | <PreviewImage name={result.name} src={result.showUrl} /> |
| | | {resIndex !== res.fileList.length - 1 && <>,</>} |
| | | </a> |
| | | </div> |
| | | }) |
| | | } |
| | | }) |