From 7b6060f16a7bae9e88b45cc42ade07d9357781c6 Mon Sep 17 00:00:00 2001
From: xusd <hugeinfo123>
Date: Mon, 09 Sep 2024 22:22:53 +0800
Subject: [PATCH] 正式环境配置
---
gz-customerSystem/src/components/WantUserTag/Handling.jsx | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/gz-customerSystem/src/components/WantUserTag/Handling.jsx b/gz-customerSystem/src/components/WantUserTag/Handling.jsx
index 49352d3..d3c4338 100644
--- a/gz-customerSystem/src/components/WantUserTag/Handling.jsx
+++ b/gz-customerSystem/src/components/WantUserTag/Handling.jsx
@@ -2,20 +2,21 @@
* @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-05 09:34:19
* @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 />
--
Gitblit v1.8.0