fix bug
This commit is contained in:
@ -427,7 +427,7 @@ export class DatatableFundReportingComponent implements OnInit {
|
|||||||
* 异步导出
|
* 异步导出
|
||||||
*/
|
*/
|
||||||
export() {
|
export() {
|
||||||
this.service.exportStart(this.sf?.value, this.service.$api_export_fund_reporting);
|
this.service.exportStart({ ...this.sf.value, pageSize: -1 }, this.service.$api_export_fund_reporting);
|
||||||
}
|
}
|
||||||
|
|
||||||
openWainingModal(content: string, title = '提示') {
|
openWainingModal(content: string, title = '提示') {
|
||||||
|
|||||||
@ -518,7 +518,7 @@ export class DatatableOrderReportingComponent implements OnInit {
|
|||||||
* 异步导出
|
* 异步导出
|
||||||
*/
|
*/
|
||||||
export() {
|
export() {
|
||||||
this.service.exportStart(this.sf?.value, this.service.$api_export_reporting_order);
|
this.service.exportStart({...this.sf?.value, pageSize: -1 }, this.service.$api_export_reporting_order);
|
||||||
}
|
}
|
||||||
|
|
||||||
openWainingModal(content: string, title = '提示') {
|
openWainingModal(content: string, title = '提示') {
|
||||||
|
|||||||
@ -285,6 +285,6 @@ export class OrderManagementAbnormalWarningComponent implements OnInit {
|
|||||||
|
|
||||||
// 导出
|
// 导出
|
||||||
exprot() {
|
exprot() {
|
||||||
this.service.exportStart(this.reqParams, this.service.$api_get_asyncExportSpotCheckList);
|
this.service.exportStart({ ...this.reqParams, pageSize: -1 }, this.service.$api_get_asyncExportSpotCheckList);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -851,6 +851,6 @@ export class OrderManagementBulkComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
// 导出
|
// 导出
|
||||||
exprot() {
|
exprot() {
|
||||||
this.service.exportStart(this.reqParams,this.service.$api_get_asyncExportBulkList);
|
this.service.exportStart({ ...this.reqParams, pageSize: -1 },this.service.$api_get_asyncExportBulkList);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -696,6 +696,6 @@ export class OrderManagementComplianceAuditComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
// 导出
|
// 导出
|
||||||
exprot() {
|
exprot() {
|
||||||
this.service.exportStart(this.reqParams, this.service.$api_get_asyncExportSpotCheckList);
|
this.service.exportStart({ ...this.reqParams, pageSize: -1 }, this.service.$api_get_asyncExportSpotCheckList);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -578,6 +578,6 @@ export class OrderManagementReceiptsAuditComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
// 导出
|
// 导出
|
||||||
exprot() {
|
exprot() {
|
||||||
this.service.exportStart(this.reqParams, this.service.$api_get_asyncExportExamineBillList);
|
this.service.exportStart({ ...this.reqParams, pageSize: -1 }, this.service.$api_get_asyncExportExamineBillList);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -534,6 +534,6 @@ export class OrderManagementRiskComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
// 导出
|
// 导出
|
||||||
exprot() {
|
exprot() {
|
||||||
this.service.exportStart(this.reqParams, this.service.$api_get_asyncExportRiskBillList);
|
this.service.exportStart({ ...this.reqParams, pageSize: -1 }, this.service.$api_get_asyncExportRiskBillList);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -866,6 +866,6 @@ export class OrderManagementVehicleComponent extends BasicTableComponent impleme
|
|||||||
}
|
}
|
||||||
// 导出
|
// 导出
|
||||||
exprot() {
|
exprot() {
|
||||||
this.service.exportStart(this.reqParams, this.service.$api_get_asyncExportWholeList);
|
this.service.exportStart({ ...this.reqParams, pageSize: -1 }, this.service.$api_get_asyncExportWholeList);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user