release/2.18.2.2412.02-个税

This commit is contained in:
lys 2024-12-27 11:01:38 +08:00
parent 15c24bf0b7
commit 7216560bfd
2 changed files with 8 additions and 1 deletions

View File

@ -163,3 +163,9 @@
}
}
.scopeDialog {
.wea-dialog-body {
min-height: 120px;
}
}

View File

@ -150,7 +150,8 @@ class PersonalScopeModal extends Component {
<Button type="ghost" onClick={() => personScopeForm.resetForm()}>{getLabel(111, "重置")}</Button>
];
return (
<WeaDialog {...this.props} initLoadCss title={title} style={{ width: 600, minHeight: 174 }} buttons={buttons}>
<WeaDialog {...this.props} initLoadCss title={title} style={{ width: 600 }} buttons={buttons}
className="scopeDialog">
<div className="form-dialog-layout">{this.renderForm()}</div>
</WeaDialog>
);