This commit is contained in:
java110 2022-08-24 11:41:22 +08:00
commit b766de29c5
3 changed files with 7 additions and 4 deletions

View File

@ -147,7 +147,7 @@
return;
}
vc.http.apiPost(
'fee.saveTempCarFeeConfig',
'/fee.saveTempCarFeeConfig',
JSON.stringify(vc.component.addTempCarFeeConfigInfo),
{
emulateJSON: true

Binary file not shown.

View File

@ -23,7 +23,8 @@
roomNum: '',
unitId: '',
roomSubType: '',
ownerName: ''
ownerName: '',
communityId : vc.getCurrentCommunity().communityId
},
feeConfigs: [],
feeConfigNames: [],
@ -88,7 +89,7 @@
_loadListOweFeeInfo: function (_page, _row) {
vc.component.listOweFeeInfo.conditions.page = _page;
vc.component.listOweFeeInfo.conditions.row = _row;
vc.component.listOweFeeInfo.conditions.communityId = vc.getCurrentCommunity().communityId;
// vc.component.listOweFeeInfo.conditions.;
let _configIds = "";
$that.listOweFeeInfo.feeConfigNames.forEach(item => {
_configIds += (item.configId + ',')
@ -228,7 +229,9 @@
if (_configIds.endsWith(',')) {
_configIds = _configIds.substring(0, _configIds.length - 1);
}
vc.jumpToPage('/callComponent/exportReportFee/exportData?communityId=' + vc.getCurrentCommunity().communityId + "&pagePath=listOweFee&configIds=" + _configIds);
let _conditions = vc.objToGetParam($that.listOweFeeInfo.conditions)
vc.jumpToPage('/callComponent/exportReportFee/exportData?pagePath=listOweFee&configIds=' + _configIds+"&"+_conditions);
},
_toFeeCollectionOrderManage: function () {
vc.jumpToPage('/#/pages/property/feeCollectionOrderManage');