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