From 6a4f69b2fb9efa845fdd43c76713067716c3dd8e Mon Sep 17 00:00:00 2001 From: zhangyongtian <1181606322@qq.com> Date: Fri, 13 Sep 2024 09:32:06 +0800 Subject: [PATCH] Merge branch 'master' of http://120.79.193.119:9090/r/gzzfw/frontEnd/gzDyh --- gz-customerSystem/src/views/register/matterDetail/HandleRecord.jsx | 14 ++++++++------ 1 files changed, 8 insertions(+), 6 deletions(-) diff --git a/gz-customerSystem/src/views/register/matterDetail/HandleRecord.jsx b/gz-customerSystem/src/views/register/matterDetail/HandleRecord.jsx index ef34029..ee460ea 100644 --- a/gz-customerSystem/src/views/register/matterDetail/HandleRecord.jsx +++ b/gz-customerSystem/src/views/register/matterDetail/HandleRecord.jsx @@ -2,7 +2,7 @@ * @Author: dminyi 1301963064@qq.com * @Date: 2024-09-06 09:40:00 * @LastEditors: dminyi 1301963064@qq.com - * @LastEditTime: 2024-09-12 20:48:45 + * @LastEditTime: 2024-09-12 20:55:47 * @FilePath: \gzDyh\gz-customerSystem\src\views\register\matterDetail\HandleRecord.jsx * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE */ @@ -10,7 +10,7 @@ import { Empty } from '@arco-design/web-react'; import { fold, down, empty, edit } from '@/assets/images'; import { Image } from 'antd'; -// import {link} from '@/assets/image'; +import {link} from '@/assets/images'; import * as $$ from '@/utils/utility'; @@ -92,10 +92,12 @@ }} /> </div> - <td style={{color:'#1A6FB8'}} onClick={() => handleOpenFiles(record?.fileInfoList?.[0])}> - {/* <img src={link} alt=''/> */} - {record?.fileInfoList?.[0]?.name || '-'} - </td> + <td style={{ color: '#1A6FB8' }} onClick={() => handleOpenFiles(record?.fileInfoList?.[0])}> + <div style={{cursor: 'pointer',display:'flex',alignItems:'center',gap:'4px'}}> + <img src={link} alt='' style={{width:'14px',height:'14px'}}/> + <div>{record?.fileInfoList?.[0]?.name || '-'}</div> + </div> + </td> </tr> </table> </div> -- Gitblit v1.8.0