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'; ...@@ -7,6 +7,7 @@ import { BillDetailData } from '../IntroduceRow';
import { repaymentModalSchema } from './schema'; import { repaymentModalSchema } from './schema';
import { createEffects } from './effects'; import { createEffects } from './effects';
import { useAsyncSelect } from '@/formSchema/effects/useAsyncSelect'; import { useAsyncSelect } from '@/formSchema/effects/useAsyncSelect';
import styles from './index.less';
const { onFormInit$ } = FormEffectHooks; const { onFormInit$ } = FormEffectHooks;
...@@ -83,6 +84,7 @@ const RefundModal: React.FC<RefundModalProps> = (props) => { ...@@ -83,6 +84,7 @@ const RefundModal: React.FC<RefundModalProps> = (props) => {
confirmLoading={confirmLoading} confirmLoading={confirmLoading}
onOk={() => repaymentFormActions.submit()} onOk={() => repaymentFormActions.submit()}
onCancel={onCancel} onCancel={onCancel}
className={styles.modal}
destroyOnClose destroyOnClose
> >
<NiceForm <NiceForm
......
...@@ -56,4 +56,12 @@ ...@@ -56,4 +56,12 @@
font-weight: 500; font-weight: 500;
color: #FFFFFF; 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> = ({ ...@@ -265,6 +265,7 @@ const QuotaApplicationInfo: React.FC<QuotaApplicationInfo> = ({
confirmLoading={submitLoading} confirmLoading={submitLoading}
onOk={() => formActions.submit()} onOk={() => formActions.submit()}
onCancel={() => setModalVisible(false)} onCancel={() => setModalVisible(false)}
className={styles.modal}
destroyOnClose destroyOnClose
> >
<NiceForm <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