mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 05:46:03 +08:00
提现流程
This commit is contained in:
parent
8b680edbae
commit
f50d4294bc
@ -25,7 +25,7 @@
|
||||
</div>
|
||||
<div class="ibox-content">
|
||||
<button class="btn btn-primary float-right" type="button"
|
||||
v-on:click="_auditSubmit()">
|
||||
v-on:click="_accountPaySubmit()">
|
||||
<i class="fa fa-check"></i> 提交
|
||||
</button>
|
||||
<button type="button" class="btn btn-warning float-right" style="margin-right:20px;"
|
||||
@ -30,7 +30,7 @@
|
||||
});
|
||||
},
|
||||
methods: {
|
||||
auditValidate() {
|
||||
accountPayValidate() {
|
||||
return vc.validate.validate({
|
||||
accountPayInfo: vc.component.accountPayInfo
|
||||
}, {
|
||||
@ -60,8 +60,8 @@
|
||||
]
|
||||
});
|
||||
},
|
||||
_auditSubmit: function () {
|
||||
if (!vc.component.auditValidate()) {
|
||||
_accountPaySubmit: function () {
|
||||
if (!vc.component.accountPayValidate()) {
|
||||
vc.toast(vc.validate.errInfo);
|
||||
return;
|
||||
}
|
||||
@ -75,7 +75,7 @@
|
||||
<td class="text-center">
|
||||
<div class="btn-group">
|
||||
<button class="btn-white btn btn-xs"
|
||||
v-on:click="_openAuditAccountWithdrawalApplyFkModal(accountWithdrawalApplyFks)">付款</button>
|
||||
v-on:click="_openAccountPaykModal(accountWithdrawalApplyFks)">付款</button>
|
||||
</div>
|
||||
<!--<div class="btn-group">
|
||||
<button class="btn-white btn btn-xs"
|
||||
|
||||
@ -51,7 +51,7 @@
|
||||
var _accountWithdrawalApplyFkManageInfo = JSON.parse(json);
|
||||
vc.component.accountWithdrawalApplyFkManageInfo.total = _accountWithdrawalApplyFkManageInfo.total;
|
||||
vc.component.accountWithdrawalApplyFkManageInfo.records = _accountWithdrawalApplyFkManageInfo.records;
|
||||
vc.component.accountWithdrawalApplyFkManageInfo.accountWithdrawalApplys = _accountWithdrawalApplyFkManageInfo.data;
|
||||
vc.component.accountWithdrawalApplyFkManageInfo.accountWithdrawalApplyFks = _accountWithdrawalApplyFkManageInfo.data;
|
||||
vc.emit('pagination', 'init', {
|
||||
total: vc.component.accountWithdrawalApplyFkManageInfo.records,
|
||||
currentPage: _page
|
||||
@ -74,7 +74,7 @@
|
||||
vc.component._listAccountWithdrawalApplyFks(DEFAULT_PAGE, DEFAULT_ROWS);
|
||||
|
||||
},
|
||||
_openAuditAccountWithdrawalApplyFkModal:function(_accountWithdrawalApplyFks){
|
||||
_openAccountPaykModal:function(_accountWithdrawalApplyFks){
|
||||
vc.component.accountWithdrawalApplyFkManageInfo.applyId = _accountWithdrawalApplyFks.applyId;
|
||||
vc.emit('accountPay', 'accountPayModel',{});
|
||||
},
|
||||
@ -86,8 +86,8 @@
|
||||
_accountWithdrawalApplyFk.state='687';
|
||||
}
|
||||
_accountWithdrawalApplyFk.applyId = vc.component.accountWithdrawalApplyFkManageInfo.applyId;
|
||||
_accountWithdrawalApplyFk.context = _accountWithdrawalApply.remark;
|
||||
vc.http.post(
|
||||
_accountWithdrawalApplyFk.context = _accountWithdrawalApplyFk.remark;
|
||||
vc.http.apiPost(
|
||||
'/accountWithdrawalApply/upAccountWithdrawalApply',
|
||||
JSON.stringify(_accountWithdrawalApplyFk),
|
||||
{
|
||||
|
||||
@ -60,7 +60,6 @@
|
||||
<th class="text-center">申请人电话</th>
|
||||
<th class="text-center">申请说明</th>
|
||||
<th class="text-center">状态</th>
|
||||
<th class="text-center">操作</th>
|
||||
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
@ -51,7 +51,7 @@
|
||||
var _accountWithdrawalApplyShManageInfo = JSON.parse(json);
|
||||
vc.component.accountWithdrawalApplyShManageInfo.total = _accountWithdrawalApplyShManageInfo.total;
|
||||
vc.component.accountWithdrawalApplyShManageInfo.records = _accountWithdrawalApplyShManageInfo.records;
|
||||
vc.component.accountWithdrawalApplyShManageInfo.accountWithdrawalApplys = _accountWithdrawalApplyShManageInfo.data;
|
||||
vc.component.accountWithdrawalApplyShManageInfo.accountWithdrawalApplyShs = _accountWithdrawalApplyShManageInfo.data;
|
||||
vc.emit('pagination', 'init', {
|
||||
total: vc.component.accountWithdrawalApplyShManageInfo.records,
|
||||
currentPage: _page
|
||||
@ -87,7 +87,7 @@
|
||||
}
|
||||
_accountWithdrawalApplySh.applyId = vc.component.accountWithdrawalApplyShManageInfo.applyId;
|
||||
_accountWithdrawalApplySh.context = _accountWithdrawalApplySh.remark;
|
||||
vc.http.post(
|
||||
vc.http.apiPost(
|
||||
'/accountWithdrawalApply/upAccountWithdrawalApply',
|
||||
JSON.stringify(_accountWithdrawalApplySh),
|
||||
{
|
||||
|
||||
Loading…
Reference in New Issue
Block a user