加入审核代码

;
This commit is contained in:
wuxw 2020-10-01 11:19:53 +08:00
parent 774c941536
commit 6e6e71c2ce
2 changed files with 16 additions and 3 deletions

View File

@ -81,7 +81,7 @@
<td class="text-center">{{payFee.payerObjName}}</td>
<td class="text-center">{{payFee.feeName}}</td>
<td class="text-center">{{payFee.cycles}}个月</td>
<td class="text-center">{{payFee.endTime}}</td>
<td class="text-center">{{payFee.startTime}}</td>
<td class="text-center">{{payFee.endTime}}</td>
<td class="text-center">{{payFee.receivableAmount}}</td>
<td class="text-center">{{payFee.receivedAmount}}</td>
@ -95,7 +95,7 @@
v-on:click="_detailFee(payFee)">详情
</button>
<button class="btn btn-link btn-xs"
v-on:click="_auditFee(payFee)">审核费用
v-on:click="_openAuditFeeModal(payFee)">审核费用
</button>
</td>
</tr>
@ -114,4 +114,7 @@
</div>
</div>
</div>
<vc:create path="common/audit" callBackListener="payFeeAuditManage" callBackFunction="audtiNotify"></vc:create>
</div>

View File

@ -20,7 +20,8 @@
endTime: '',
userCode:'',
state:''
}
},
curPayFee:{}
}
},
_initMethod: function () {
@ -34,6 +35,10 @@
vc.on('pagination', 'page_event', function (_currentPage) {
vc.component._listpayFees(_currentPage, DEFAULT_ROWS);
});
vc.on('payFeeAuditManage','audtiNotify',function(_param){
});
},
methods: {
_listPayFees: function (_page, _rows) {
@ -91,6 +96,11 @@
},
_detailFee:function(_fee){
vc.jumpToPage('/admin.html#/pages/property/propertyFee?'+vc.objToGetParam(_fee));
},
_openAuditFeeModal:function(_payFee){ // 打开 审核框
$that.payFeeAuditManageInfo.curPayFee = _payFee;
vc.emit('audit', 'openAuditModal',{});
}
}
});