diff --git a/public/components/report/reportFeeDetailContract/reportFeeDetailContract.js b/public/components/report/reportFeeDetailContract/reportFeeDetailContract.js
index f5d625d2a..cf1801a17 100644
--- a/public/components/report/reportFeeDetailContract/reportFeeDetailContract.js
+++ b/public/components/report/reportFeeDetailContract/reportFeeDetailContract.js
@@ -59,6 +59,25 @@
}
);
},
+ _exportReportFeeDetailOwnerExcel: function() {
+ vc.component.reportFeeDetailContractInfo.conditions.communityId = vc.getCurrentCommunity().communityId;
+ vc.component.reportFeeDetailContractInfo.conditions.pagePath = 'reportFeeDetailContract';
+ let param = {
+ params: vc.component.reportFeeDetailContractInfo.conditions
+ };
+ //发送get请求
+ vc.http.apiGet('/export.exportData', param,
+ function(json, res) {
+ let _json = JSON.parse(json);
+ vc.toast(_json.msg);
+ if (_json.code == 0) {
+ vc.jumpToPage('/#/pages/property/downloadTempFile?tab=下载中心')
+ }
+ },
+ function(errInfo, error) {
+ console.log('请求失败处理');
+ });
+ }
}
});
diff --git a/public/components/report/reportFeeDetailOwner/reportFeeDetailOwner.html b/public/components/report/reportFeeDetailOwner/reportFeeDetailOwner.html
index c427b4fb7..7880235a8 100644
--- a/public/components/report/reportFeeDetailOwner/reportFeeDetailOwner.html
+++ b/public/components/report/reportFeeDetailOwner/reportFeeDetailOwner.html
@@ -1,34 +1,40 @@
-
-
-
- |
-
- |
-
-
- |
-
-
- |
-
-
- |
-
- {{item.name}}
- 欠费/实收
- |
-
-
-
-
- | {{fee.ownerName}}({{fee.link}}) |
-
- {{fee.objName}}
- |
- {{fee.oweFee || '0'}} |
- {{fee.receivedFee || '0'}} |
-
+
+
+
+
+
+
+
+ |
+
+ |
+
+
+ |
+
+
+ |
+
+
+ |
+
+ {{item.name}}
+ 欠费/实收
+ |
+
+
+
+
+ | {{fee.ownerName}}({{fee.link}}) |
+
+ {{fee.objName}}
+ |
+ {{fee.oweFee || '0'}} |
+ {{fee.receivedFee || '0'}} |
+
{{fee['oweFee'+item.statusCd] || 0}}
|
@@ -36,9 +42,10 @@
{{fee['receivedFee'+item.statusCd] || 0}}
-
-
-
+
+
+
+
diff --git a/public/components/report/reportFeeDetailOwner/reportFeeDetailOwner.js b/public/components/report/reportFeeDetailOwner/reportFeeDetailOwner.js
index cfbb76b9d..ec2c88ebd 100644
--- a/public/components/report/reportFeeDetailOwner/reportFeeDetailOwner.js
+++ b/public/components/report/reportFeeDetailOwner/reportFeeDetailOwner.js
@@ -60,6 +60,25 @@
}
);
},
+ _exportReportFeeDetailOwnerExcel: function() {
+ vc.component.reportFeeDetailOwnerInfo.conditions.communityId = vc.getCurrentCommunity().communityId;
+ vc.component.reportFeeDetailOwnerInfo.conditions.pagePath = 'reportFeeDetailOwner';
+ let param = {
+ params: vc.component.reportFeeDetailOwnerInfo.conditions
+ };
+ //发送get请求
+ vc.http.apiGet('/export.exportData', param,
+ function(json, res) {
+ let _json = JSON.parse(json);
+ vc.toast(_json.msg);
+ if (_json.code == 0) {
+ vc.jumpToPage('/#/pages/property/downloadTempFile?tab=下载中心')
+ }
+ },
+ function(errInfo, error) {
+ console.log('请求失败处理');
+ });
+ }
}
});
diff --git a/public/components/report/reportFeeDetailRoom/reportFeeDetailRoom.html b/public/components/report/reportFeeDetailRoom/reportFeeDetailRoom.html
index 0e453d8d8..e1abf92a2 100644
--- a/public/components/report/reportFeeDetailRoom/reportFeeDetailRoom.html
+++ b/public/components/report/reportFeeDetailRoom/reportFeeDetailRoom.html
@@ -15,7 +15,12 @@
-
+
+
+
+
diff --git a/public/components/report/reportFeeDetailRoom/reportFeeDetailRoom.js b/public/components/report/reportFeeDetailRoom/reportFeeDetailRoom.js
index 6d046c707..fc620ad7e 100644
--- a/public/components/report/reportFeeDetailRoom/reportFeeDetailRoom.js
+++ b/public/components/report/reportFeeDetailRoom/reportFeeDetailRoom.js
@@ -88,6 +88,26 @@
);
},
+ _exportReportFeeDetailRoomExcel: function() {
+ vc.component.reportFeeDetailRoomInfo.conditions.communityId = vc.getCurrentCommunity().communityId;
+ vc.component.reportFeeDetailRoomInfo.conditions.pagePath = 'reportFeeDetailRoom';
+ let param = {
+ params: vc.component.reportFeeDetailRoomInfo.conditions
+ };
+ //发送get请求
+ vc.http.apiGet('/export.exportData', param,
+ function(json, res) {
+ let _json = JSON.parse(json);
+ vc.toast(_json.msg);
+ if (_json.code == 0) {
+ vc.jumpToPage('/#/pages/property/downloadTempFile?tab=下载中心')
+ }
+ },
+ function(errInfo, error) {
+ console.log('请求失败处理');
+ });
+ }
+
}
});
})(window.vc);
\ No newline at end of file