From d487bd6bf436ccd37c61681f4f20d5d3520c0bda Mon Sep 17 00:00:00 2001 From: dminyi <1301963064@qq.com> Date: Fri, 16 Aug 2024 09:55:50 +0800 Subject: [PATCH] 弹窗 --- gz-customerSystem/src/components/MyModal/index.jsx | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/gz-customerSystem/src/components/MyModal/index.jsx b/gz-customerSystem/src/components/MyModal/index.jsx index 1d20e13..b7a4bb6 100644 --- a/gz-customerSystem/src/components/MyModal/index.jsx +++ b/gz-customerSystem/src/components/MyModal/index.jsx @@ -2,14 +2,15 @@ * @Company: hugeInfo * @Author: ldh * @Date: 2022-06-21 10:11:01 - * @LastEditTime: 2023-05-12 20:43:00 - * @LastEditors: lwh + * @LastEditTime: 2024-08-15 18:04:15 + * @LastEditors: dminyi 1301963064@qq.com * @Version: 1.0.0 * @Description: 我的Modal */ import React from 'react'; import PropTypes from 'prop-types'; import { Button, Modal, Space } from 'antd'; +import { CloseCircleFilled, } from '@ant-design/icons'; import './index.less'; const MyModal = ({ @@ -38,6 +39,7 @@ onCancel={onCancel} zIndex={zIndex} centered={centered} + closeIcon={<CloseCircleFilled style={{color:'#86909C'}}/>} > {!!title && ( <div className="myModal-header"> -- Gitblit v1.8.0