youhuadaima

This commit is contained in:
java110 2021-02-26 15:06:46 +08:00
parent 910e3d11a9
commit 482094c21b
3 changed files with 14 additions and 13 deletions

View File

@ -26,18 +26,6 @@
_initMethod: function () {
vc.component._initDate();
vc.component._listFees(DEFAULT_PAGE, DEFAULT_ROWS);
// vc.initDateMonth('startTime', function (_startTime) {
// $that.reportFeeSummaryInfo.conditions.startTime = _startTime;
// });
// vc.initDateMonth('endTime', function (_endTime) {
// $that.reportFeeSummaryInfo.conditions.endTime = _endTime;
// let start = Date.parse(new Date($that.reportFeeSummaryInfo.conditions.startTime + "-01"))
// let end = Date.parse(new Date($that.reportFeeSummaryInfo.conditions.endTime + "-01"))
// if (start - end >= 0) {
// vc.toast("结束时间必须大于开始时间")
// $that.reportFeeSummaryInfo.conditions.endTime = '';
// }
// });
},
_initEvent: function () {
vc.on('reportFeeSummary', 'chooseFloor', function (_param) {

View File

@ -49,7 +49,10 @@
<div class="ibox-title">
<h5>查询条件</h5>
<div class="ibox-tools" style="top:10px;">
<button type="button" class="btn btn-primary btn-sm" v-on:click="_exportFee()">
<i class="fa fa-plus"></i>
导出
</button>
</div>
</div>
<div class="ibox-content">

View File

@ -240,6 +240,16 @@
return '请填写房屋编号'
}
return '请填写车牌号';
},
_exportFee: function () {
let _objType = vc.component.reportProficientInfo._currentTab == 'reportProficientRoomFee'?"3333":"6666"
vc.jumpToPage('/callComponent/exportReportFee/exportData?communityId='
+ vc.getCurrentCommunity().communityId
+"&configId="+$that.reportProficientInfo.conditions.configId
+"&feeTypeCd="+$that.reportProficientInfo.conditions.feeTypeCd
+"&objType="+_objType
+ "&pagePath=reportYearCollection");
}
}
})