From ae3833a1fc16bd3c9fd13f8301397e5835a9e49c Mon Sep 17 00:00:00 2001
From: zhangyongtian <1181606322@qq.com>
Date: Sun, 15 Sep 2024 15:31:02 +0800
Subject: [PATCH] fix: 自行排查更改、流程组件完善

---
 gz-customerSystem/src/components/WantUserTag/Handling.jsx |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/gz-customerSystem/src/components/WantUserTag/Handling.jsx b/gz-customerSystem/src/components/WantUserTag/Handling.jsx
index 49352d3..6491871 100644
--- a/gz-customerSystem/src/components/WantUserTag/Handling.jsx
+++ b/gz-customerSystem/src/components/WantUserTag/Handling.jsx
@@ -2,23 +2,24 @@
  * @Author: dminyi 1301963064@qq.com
  * @Date: 2024-08-29 20:43:25
  * @LastEditors: dminyi 1301963064@qq.com
- * @LastEditTime: 2024-08-30 10:27:25
+ * @LastEditTime: 2024-09-12 18:15:43
  * @FilePath: \gzDyh\gz-customerSystem\src\components\WantUserTag\Handling.jsx
  * @Description: 经办人
  */
 import React from 'react';
 import PropTypes from 'prop-types';
-import { Typography } from 'antd';
 import { CloseOutlined } from '@ant-design/icons';
+import {person} from '@/assets/images/icon'
 import './index.less';
 
 const WantUserTag = ({ name, value, onClose }) => {
   return (
     <div className="wantUserTag">
       <div className="wantUserTag-wantHandleUser">
+        <div className="wantUserTag-wantHandleUser-left"><img src={person} alt=''/></div>
         <div className="wantUserTag-wantHandleUser-right">{name}</div>
         <div onClick={() => onClose(value)} className="wantUserTag-wantHandleUser-icon">
-          <CloseOutlined />
+          <CloseOutlined style={{ fontSize: '12px'}} />
         </div>
       </div>
     </div>

--
Gitblit v1.8.0