From 57d1fbef468c74a6c57a7f2e48de082707dbdff0 Mon Sep 17 00:00:00 2001
From: dminyi <1301963064@qq.com>
Date: Fri, 13 Sep 2024 11:27:26 +0800
Subject: [PATCH] 办理反馈页面修改
---
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