| | |
| | | * @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> |