Showing
1 changed file
with
2 additions
and
3 deletions
| @@ -48,9 +48,9 @@ export const UrlDialog: React.FC<UrlDialogProp> = (props) => { | @@ -48,9 +48,9 @@ export const UrlDialog: React.FC<UrlDialogProp> = (props) => { | ||
| 48 | <> | 48 | <> |
| 49 | <Modal | 49 | <Modal |
| 50 | title={props.title} | 50 | title={props.title} |
| 51 | - width={'864px'} | 51 | + width={'1200px'} |
| 52 | visible={visible} | 52 | visible={visible} |
| 53 | - bodyStyle={{ padding: '20px 10px 20px 20px' }} // 不能加 对其详情有影响 | 53 | + bodyStyle={{ padding: '0' }} // 不能加 对其详情有影响 |
| 54 | onCancel={() => setVisible(false)} | 54 | onCancel={() => setVisible(false)} |
| 55 | footer={false} | 55 | footer={false} |
| 56 | destroyOnClose={true} | 56 | destroyOnClose={true} |
| @@ -240,4 +240,3 @@ const ButtonForm: React.FC<ButtonFormProps> = (props) => { | @@ -240,4 +240,3 @@ const ButtonForm: React.FC<ButtonFormProps> = (props) => { | ||
| 240 | }; | 240 | }; |
| 241 | 241 | ||
| 242 | export default ButtonForm; | 242 | export default ButtonForm; |
| 243 | - |