| @@ -26,10 +26,15 @@ | |||||
| <p style="margin-bottom:10px;">· 已阅读并知晓:已阅读并同意 <span style="color:#C21F3A">《竞拍服务协议》</span></p> | <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-checkbox v-model="checked" shape="square" checked-color="#007E72" ><p :style="{color:color}">本人已知晓并同意以上所有事项</p></van-checkbox> | ||||
| </van-row> | </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;"> | <van-row style="padding:0 10px;margin-top: 20px;"> | ||||
| <h2 style="margin-bottom:10px;padding:0 10px">2.竞买人身份确认</h2> | <h2 style="margin-bottom:10px;padding:0 10px">2.竞买人身份确认</h2> | ||||
| <van-form @submit="onSubmit"> | <van-form @submit="onSubmit"> | ||||
| <van-field | <van-field | ||||
| readonly | |||||
| v-model="realname" | v-model="realname" | ||||
| name="realname" | name="realname" | ||||
| label="姓名" | label="姓名" | ||||
| @@ -38,6 +43,7 @@ | |||||
| :rules="[{ required: true, message: '请填写姓名' }]" | :rules="[{ required: true, message: '请填写姓名' }]" | ||||
| /> | /> | ||||
| <van-field | <van-field | ||||
| readonly | |||||
| v-model="phone" | v-model="phone" | ||||
| name="phone" | name="phone" | ||||
| label="会员账号" | label="会员账号" | ||||
| @@ -46,6 +52,25 @@ | |||||
| :rules="[{ required: true, message: '请填写会员账号' }]" | :rules="[{ required: true, message: '请填写会员账号' }]" | ||||
| /> | /> | ||||
| <van-field | <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" | v-model="bankCardName" | ||||
| name="bankCardName" | name="bankCardName" | ||||
| label="开户姓名" | label="开户姓名" | ||||
| @@ -54,6 +79,7 @@ | |||||
| :rules="[{ required: true, message: '请填写开户姓名' }]" | :rules="[{ required: true, message: '请填写开户姓名' }]" | ||||
| /> | /> | ||||
| <van-field | <van-field | ||||
| readonly | |||||
| v-model="bankAddress" | v-model="bankAddress" | ||||
| name="bankAddress" | name="bankAddress" | ||||
| label="开户银行" | label="开户银行" | ||||
| @@ -62,6 +88,7 @@ | |||||
| :rules="[{ required: true, message: '请填写开户银行' }]" | :rules="[{ required: true, message: '请填写开户银行' }]" | ||||
| /> | /> | ||||
| <van-field | <van-field | ||||
| readonly | |||||
| v-model="bankCardNum" | v-model="bankCardNum" | ||||
| name="bankCardNum" | name="bankCardNum" | ||||
| label="银行卡号" | label="银行卡号" | ||||
| @@ -70,6 +97,16 @@ | |||||
| :rules="[{ required: true, message: '请填写银行卡号' }]" | :rules="[{ required: true, message: '请填写银行卡号' }]" | ||||
| /> | /> | ||||
| <van-field | <van-field | ||||
| readonly | |||||
| v-model="payeePaymentLines" | |||||
| name="payeePaymentLines" | |||||
| label="联行号" | |||||
| placeholder="联行号" | |||||
| required | |||||
| :rules="[{ required: true, message: '请填写联行号' }]" | |||||
| /> | |||||
| <van-field | |||||
| readonly | |||||
| v-model="idCardNum" | v-model="idCardNum" | ||||
| name="idCardNum" | name="idCardNum" | ||||
| label="身份证号" | label="身份证号" | ||||
| @@ -132,20 +169,35 @@ export default { | |||||
| password:"", | password:"", | ||||
| fileList:[], | fileList:[], | ||||
| tableId:"", | tableId:"", | ||||
| realname:"", | |||||
| accountType:"", | |||||
| bankType:"", | |||||
| payeePaymentLines:"", | |||||
| }; | }; | ||||
| }, | }, | ||||
| created() { | created() { | ||||
| getInfo().then(response => { | 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: { | methods: { | ||||
| onRead (file) { | onRead (file) { | ||||