This commit is contained in:
linfso 2025-07-11 08:02:49 +08:00
parent 99eae53b3e
commit c6cc5c3d83

View File

@ -694,12 +694,14 @@ export default {
this.exportData(this.selectBillList,loadingInstance); this.exportData(this.selectBillList,loadingInstance);
} }
else{ else{
let qExportParam={...this.queryParams}; let qExportParam=this.deepClone(this.queryParams);
qExportParam.pageNum=1; qExportParam.pageNum=1;
qExportParam.pageSize=20000; qExportParam.pageSize=200000;
qExportParam=this.addQueryParam(qExportParam, "blZExport","T");
listEmisTmsCostProfit(this.addDateRange(qExportParam, this.dateTimeRange,"sendDate")).then(response => { listEmisTmsCostProfit(this.addDateRange(qExportParam, this.dateTimeRange,"sendDate")).then(response => {
if (response.code === 200) { if (response.code === 200) {
this.exportData(response.rows,loadingInstance); let rows=this.unzipToJson(response.rows[0]);
this.exportData(rows,loadingInstance);
} }
}); });
} }