优化缴费为cmd 模式

This commit is contained in:
java110 2022-04-07 09:45:07 +08:00
parent 83a8a70f6a
commit 75aaa818e7
2 changed files with 3 additions and 4 deletions

View File

@ -47,7 +47,7 @@
param.params.billId = param.params.billId.trim(); param.params.billId = param.params.billId.trim();
param.params.billName = param.params.billName.trim(); param.params.billName = param.params.billName.trim();
//发送get请求 //发送get请求
vc.http.apiGet('fee.listBill', vc.http.apiGet('/fee.listBill',
param, param,
function(json, res) { function(json, res) {
var _billManageInfo = JSON.parse(json); var _billManageInfo = JSON.parse(json);

View File

@ -315,9 +315,8 @@
feeName: $that.payFeeOrderInfo.feeName, feeName: $that.payFeeOrderInfo.feeName,
amount: $that.payFeeOrderInfo.receivedAmount amount: $that.payFeeOrderInfo.receivedAmount
}); });
vc.http.post( vc.http.apiPost(
'propertyPay', '/fee.payFee',
'payFee',
JSON.stringify(vc.component.payFeeOrderInfo), { JSON.stringify(vc.component.payFeeOrderInfo), {
emulateJSON: true emulateJSON: true
}, },