| @@ -26,10 +26,15 @@ | |||
| <p style="margin-bottom:10px;">· 已阅读并知晓:已阅读并同意 <span style="color:#C21F3A">《竞拍服务协议》</span></p> | |||
| <van-checkbox v-model="checked" shape="square" checked-color="#007E72" ><p :style="{color:color}">本人已知晓并同意以上所有事项</p></van-checkbox> | |||
| </van-row> | |||
| <van-row style="padding:0 20px;margin-top:10px;"> | |||
| <h2 style="margin-bottom:10px;">竞买人身份确认说明:</h2> | |||
| <p>竞买人身份信息无法在此修改,请前往<span style="color: #c12e2a;">个人中心 > 账户设置 > 银行账户信息</span>进行修改维护</p> | |||
| </van-row> | |||
| <van-row style="padding:0 10px;margin-top: 20px;"> | |||
| <h2 style="margin-bottom:10px;padding:0 10px">2.竞买人身份确认</h2> | |||
| <van-form @submit="onSubmit"> | |||
| <van-field | |||
| readonly | |||
| v-model="realname" | |||
| name="realname" | |||
| label="姓名" | |||
| @@ -38,6 +43,7 @@ | |||
| :rules="[{ required: true, message: '请填写姓名' }]" | |||
| /> | |||
| <van-field | |||
| readonly | |||
| v-model="phone" | |||
| name="phone" | |||
| label="会员账号" | |||
| @@ -46,6 +52,25 @@ | |||
| :rules="[{ required: true, message: '请填写会员账号' }]" | |||
| /> | |||
| <van-field | |||
| readonly | |||
| v-model="accountType" | |||
| name="accountType" | |||
| label="账户类型" | |||
| placeholder="账户类型" | |||
| required | |||
| :rules="[{ required: true, message: '请填写账户类型' }]" | |||
| /> | |||
| <van-field | |||
| readonly | |||
| v-model="bankType" | |||
| name="bankType" | |||
| label="所属银行" | |||
| placeholder="所属银行" | |||
| required | |||
| :rules="[{ required: true, message: '请填写所属银行' }]" | |||
| /> | |||
| <van-field | |||
| readonly | |||
| v-model="bankCardName" | |||
| name="bankCardName" | |||
| label="开户姓名" | |||
| @@ -54,6 +79,7 @@ | |||
| :rules="[{ required: true, message: '请填写开户姓名' }]" | |||
| /> | |||
| <van-field | |||
| readonly | |||
| v-model="bankAddress" | |||
| name="bankAddress" | |||
| label="开户银行" | |||
| @@ -62,6 +88,7 @@ | |||
| :rules="[{ required: true, message: '请填写开户银行' }]" | |||
| /> | |||
| <van-field | |||
| readonly | |||
| v-model="bankCardNum" | |||
| name="bankCardNum" | |||
| label="银行卡号" | |||
| @@ -70,6 +97,16 @@ | |||
| :rules="[{ required: true, message: '请填写银行卡号' }]" | |||
| /> | |||
| <van-field | |||
| readonly | |||
| v-model="payeePaymentLines" | |||
| name="payeePaymentLines" | |||
| label="联行号" | |||
| placeholder="联行号" | |||
| required | |||
| :rules="[{ required: true, message: '请填写联行号' }]" | |||
| /> | |||
| <van-field | |||
| readonly | |||
| v-model="idCardNum" | |||
| name="idCardNum" | |||
| label="身份证号" | |||
| @@ -132,20 +169,35 @@ export default { | |||
| password:"", | |||
| fileList:[], | |||
| tableId:"", | |||
| realname:"", | |||
| accountType:"", | |||
| bankType:"", | |||
| payeePaymentLines:"", | |||
| }; | |||
| }, | |||
| created() { | |||
| getInfo().then(response => { | |||
| getMember(response.user.userId).then(res => { | |||
| this.realname = res.data.realname | |||
| this.bankCardName = res.data.bankCardName | |||
| this.idCardNum = res.data.idCardNum | |||
| this.bankAddress = res.data.bankAddress | |||
| this.bankCardNum = res.data.bankCardNum | |||
| this.phone = res.data.phone | |||
| this.memberId = res.data.id | |||
| }) | |||
| getMember(response.user.userId).then(res => { | |||
| this.realname = res.data.realname | |||
| this.bankCardName = res.data.bankCardName | |||
| this.idCardNum = res.data.idCardNum | |||
| this.bankAddress = res.data.bankAddress | |||
| this.bankCardNum = res.data.bankCardNum | |||
| this.phone = res.data.phone | |||
| this.memberId = res.data.id | |||
| this.payeePaymentLines = res.data.payeePaymentLines | |||
| this.getDicts("bank_account_type").then(rr => { | |||
| this.accountType = this.selectDictLabel(rr.data,res.data.accountType); | |||
| }); | |||
| this.getDicts("bank_type_all").then(rr => { | |||
| this.bankType = this.selectDictLabel(rr.data,res.data.bankType); | |||
| }); | |||
| }) | |||
| }) | |||
| }, | |||
| methods: { | |||
| onRead (file) { | |||