|
@@ -7,6 +7,16 @@
|
|
|
:label-width="120"
|
|
:label-width="120"
|
|
|
:rules="rules"
|
|
:rules="rules"
|
|
|
>
|
|
>
|
|
|
|
|
+ <FormItem label="姓名:" prop="bank_name">
|
|
|
|
|
+ <Input
|
|
|
|
|
+ maxlength="32"
|
|
|
|
|
+ show-word-limit
|
|
|
|
|
+ type="text"
|
|
|
|
|
+ v-model="formItem.bank_name"
|
|
|
|
|
+ placeholder="不超过32字"
|
|
|
|
|
+ class="input"
|
|
|
|
|
+ ></Input>
|
|
|
|
|
+ </FormItem>
|
|
|
<FormItem label="提现银行开户行:" prop="bank_address">
|
|
<FormItem label="提现银行开户行:" prop="bank_address">
|
|
|
<Input
|
|
<Input
|
|
|
maxlength="32"
|
|
maxlength="32"
|
|
@@ -143,6 +153,7 @@ export default {
|
|
|
alipay_qrcode_url: '', //支付宝
|
|
alipay_qrcode_url: '', //支付宝
|
|
|
wechat: '',
|
|
wechat: '',
|
|
|
wechat_qrcode_url: '', //微信
|
|
wechat_qrcode_url: '', //微信
|
|
|
|
|
+ bank_name:''
|
|
|
},
|
|
},
|
|
|
rules: {
|
|
rules: {
|
|
|
bank_address: [
|
|
bank_address: [
|
|
@@ -187,6 +198,7 @@ export default {
|
|
|
this.formItem.alipay_qrcode_url = res.data.alipay_qrcode_url;
|
|
this.formItem.alipay_qrcode_url = res.data.alipay_qrcode_url;
|
|
|
this.formItem.wechat = res.data.wechat;
|
|
this.formItem.wechat = res.data.wechat;
|
|
|
this.formItem.wechat_qrcode_url = res.data.wechat_qrcode_url;
|
|
this.formItem.wechat_qrcode_url = res.data.wechat_qrcode_url;
|
|
|
|
|
+ this.formItem.bank_name = res.data.bank_name;
|
|
|
});
|
|
});
|
|
|
},
|
|
},
|
|
|
save(name) {
|
|
save(name) {
|