mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 21:59:12 +08:00
优化boot 版bug
This commit is contained in:
parent
5be7d83276
commit
24d330e01a
@ -20,9 +20,8 @@
|
||||
methods: {
|
||||
deleteFee: function() {
|
||||
vc.component.deleteFeeInfo.communityId = vc.getCurrentCommunity().communityId;
|
||||
vc.http.post(
|
||||
'deleteFee',
|
||||
'delete',
|
||||
vc.http.apiPost(
|
||||
'/fee.deleteFee',
|
||||
JSON.stringify(vc.component.deleteFeeInfo), {
|
||||
emulateJSON: true
|
||||
},
|
||||
|
||||
@ -226,7 +226,7 @@
|
||||
console.log('_item', _item)
|
||||
$that.owePayFeeOrderInfo.oweFees.forEach(function (_oweFeeItem) {
|
||||
if (_item == _oweFeeItem.feeId) {
|
||||
totalFee += _oweFeeItem.feePrice;
|
||||
totalFee += parseFloat(_oweFeeItem.feePrice);
|
||||
}
|
||||
});
|
||||
})
|
||||
|
||||
@ -52,7 +52,7 @@
|
||||
};
|
||||
param.params.detailId = param.params.detailId.trim();
|
||||
param.params.payerObjName = param.params.payerObjName.trim();
|
||||
vc.http.apiGet('returnPayFee.listReturnPayFees',
|
||||
vc.http.apiGet('/returnPayFee.listReturnPayFees',
|
||||
param,
|
||||
function (json) {
|
||||
var _returnPayFeeManageInfo = JSON.parse(json);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user