style:调整样式

This commit is contained in:
wangsongsole 2022-10-14 13:54:50 +08:00
parent 31a046c4f4
commit 47fb96cb1b
2 changed files with 11 additions and 13 deletions

View File

@ -791,14 +791,10 @@ export default class orderlist extends React.Component {
<Dialog <Dialog
visible={this.state.visible} visible={this.state.visible}
className='questModal' className='questModal refundForm'
onClose={() => this.setState({ visible: false })} onClose={() => this.setState({ visible: false })}
title='退款'> title='退款'>
<Form <Form model={this.state.model} rules={rules} ref='form'>
model={this.state.model}
className='form'
rules={rules}
ref='form'>
<FormItem <FormItem
labelname='退款账号' labelname='退款账号'
id='account' id='account'

View File

@ -28,14 +28,16 @@
border-right: 0; border-right: 0;
} }
#account-none {
display: none;
}
.form {
.refundForm {
margin: 20px 0 50px; margin: 20px 0 50px;
}
.form-compontent { .form-compontent {
padding: 0 padding: 0
} }
#account-none {
display: none;
}
}