|
|
|
@ -188,7 +188,7 @@ class Bankcardnumberverification extends Component {
|
|
|
|
|
>
|
|
|
|
|
{getFieldDecorator('openingbank', {
|
|
|
|
|
rules: [{
|
|
|
|
|
initialValue: this.state.openingbank,
|
|
|
|
|
initialValue: this.state.openingbank&&this.state.openingbank,
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入开户行',
|
|
|
|
|
}],
|
|
|
|
@ -203,7 +203,7 @@ class Bankcardnumberverification extends Component {
|
|
|
|
|
>
|
|
|
|
|
{getFieldDecorator('subbranch', {
|
|
|
|
|
rules: [{
|
|
|
|
|
initialValue: this.state.subbranch,
|
|
|
|
|
initialValue: this.props.subbranch&&this.props.subbranch,
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入支行',
|
|
|
|
|
}],
|
|
|
|
@ -218,7 +218,7 @@ class Bankcardnumberverification extends Component {
|
|
|
|
|
>
|
|
|
|
|
{getFieldDecorator('subbranchs', {
|
|
|
|
|
rules: [{
|
|
|
|
|
initialValue: this.state.subbranchs,
|
|
|
|
|
initialValue: this.props.subbranchs&&this.props.subbranchs,
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入账号',
|
|
|
|
|
}],
|
|
|
|
|