diff --git a/public/components/property/addTempCarFeeConfig/addTempCarFeeConfig.js b/public/components/property/addTempCarFeeConfig/addTempCarFeeConfig.js index 0df1d0895..01adce531 100755 --- a/public/components/property/addTempCarFeeConfig/addTempCarFeeConfig.js +++ b/public/components/property/addTempCarFeeConfig/addTempCarFeeConfig.js @@ -147,7 +147,7 @@ return; } vc.http.apiPost( - 'fee.saveTempCarFeeConfig', + '/fee.saveTempCarFeeConfig', JSON.stringify(vc.component.addTempCarFeeConfigInfo), { emulateJSON: true diff --git a/public/pages/property/.DS_Store b/public/pages/property/.DS_Store index cbfe02c99..4e2d41f75 100755 Binary files a/public/pages/property/.DS_Store and b/public/pages/property/.DS_Store differ diff --git a/public/pages/property/listOweFee/listOweFee.js b/public/pages/property/listOweFee/listOweFee.js index 1edf38530..b7fc8777c 100755 --- a/public/pages/property/listOweFee/listOweFee.js +++ b/public/pages/property/listOweFee/listOweFee.js @@ -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');