添加身份证信息展示
This commit is contained in:
@@ -59,7 +59,6 @@
|
||||
data-btn-class="btn-warning">
|
||||
<option value="" selected="selected">不限</option>
|
||||
<option value="alipay_native">支付宝</option>
|
||||
<option value="dalong">大珑</option>
|
||||
<option value="sand">杉德</option>
|
||||
<option value="others">其他平台</option>
|
||||
</select>
|
||||
@@ -153,6 +152,25 @@
|
||||
<option value="2">银行卡</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-sm-12">
|
||||
<label class="col-sm-3 control-label">身份证号:</label>
|
||||
<input type="text" class="form-control" id="applyWithdrawModal-idCardNo" disabled>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-3 control-label">身份证照片:</label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="applyWithdrawModal-idCardFront" class="col-sm-3 control-label">正面照片:</label>
|
||||
<div class="col-sm-9">
|
||||
<img src="" id="applyWithdrawModal-idCardFront" style="width:250px;height:90px;" alt="">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="applyWithdrawModal-idCardBack" class="col-sm-3 control-label">反面照片:</label>
|
||||
<div class="col-sm-9">
|
||||
<img src="" id="applyWithdrawModal-idCardBack" style="width:250px;height:90px;" alt="">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-12">
|
||||
<label class="col-sm-3 control-label">提现金额:</label>
|
||||
<input type="text" class="form-control" id="applyWithdrawModal-amount"
|
||||
@@ -309,9 +327,7 @@ export default {
|
||||
{
|
||||
field: 'payChannel', title: '付款渠道', align: 'center', valign: 'middle', width: '5%',
|
||||
formatter: function (val) {
|
||||
if (val === 'dalong') {
|
||||
return '大珑';
|
||||
} else if (val === 'alipay_native') {
|
||||
if (val === 'alipay_native') {
|
||||
return '支付宝';
|
||||
} else if (val === 'sand') {
|
||||
return '杉德';
|
||||
@@ -488,6 +504,9 @@ export default {
|
||||
$('#applyWithdrawModal-realName').val(res.data.realName);
|
||||
$('#applyWithdrawModal-account').val(res.data.alipayAccount);
|
||||
$('#applyWithdrawModal-bankCard').val(res.data.bankCardNo);
|
||||
$('#applyWithdrawModal-idCardNo').val(res.data.idCardNo);
|
||||
$('#applyWithdrawModal-idCardFront').val(res.data.idCardFront);
|
||||
$('#applyWithdrawModal-idCardBack').val(res.data.idCardBack);
|
||||
}
|
||||
},
|
||||
error: function (error) {
|
||||
@@ -500,12 +519,15 @@ export default {
|
||||
});
|
||||
// 清空申请提现modal
|
||||
function clearModal() {
|
||||
$('#applyWithdrawModal-erbanNo').val('')
|
||||
$('#applyWithdrawModal-erbanNo').val('');
|
||||
$('#applyWithdrawModal-realName').val('先输入ID');
|
||||
$('#applyWithdrawModal-account').val('先输入ID');
|
||||
$('#applyWithdrawModal-bankCard').val('先输入ID');
|
||||
$('#applyWithdrawModal-amount').val('先获取提现信息');
|
||||
$('#applyWithdrawModal-costGold').html('先输入提现金额');
|
||||
$('#applyWithdrawModal-idCardNo').val('');
|
||||
$('#applyWithdrawModal-idCardFront').val('');
|
||||
$('#applyWithdrawModal-idCardBack').val('');
|
||||
}
|
||||
|
||||
// 申请提现
|
||||
|
Reference in New Issue
Block a user