Commit 53bc5c81 authored by XieZhiXiong's avatar XieZhiXiong

fix: 修复滑块组件显示不全的问题

parent 7769b84c
.modal {
:global {
.mega-layout-container-content {
overflow: visible;
}
}
}
\ No newline at end of file
......@@ -7,6 +7,7 @@ import { BillDetailData } from '../IntroduceRow';
import { repaymentModalSchema } from './schema';
import { createEffects } from './effects';
import { useAsyncSelect } from '@/formSchema/effects/useAsyncSelect';
import styles from './index.less';
const { onFormInit$ } = FormEffectHooks;
......@@ -83,6 +84,7 @@ const RefundModal: React.FC<RefundModalProps> = (props) => {
confirmLoading={confirmLoading}
onOk={() => repaymentFormActions.submit()}
onCancel={onCancel}
className={styles.modal}
destroyOnClose
>
<NiceForm
......
......@@ -56,4 +56,12 @@
font-weight: 500;
color: #FFFFFF;
}
}
.modal {
:global {
.mega-layout-container-content {
overflow: visible;
}
}
}
\ No newline at end of file
......@@ -265,6 +265,7 @@ const QuotaApplicationInfo: React.FC<QuotaApplicationInfo> = ({
confirmLoading={submitLoading}
onOk={() => formActions.submit()}
onCancel={() => setModalVisible(false)}
className={styles.modal}
destroyOnClose
>
<NiceForm
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment