fix bug
This commit is contained in:
		| @ -413,7 +413,7 @@ export class DatatableFundReportingComponent implements OnInit { | |||||||
|   * 异步导出 |   * 异步导出 | ||||||
|   */ |   */ | ||||||
|   export() { |   export() { | ||||||
|     this.service.exportStart({ ...this.sf.value, pageSize: -1 }, 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 = '提示') { | ||||||
|  | |||||||
| @ -179,6 +179,6 @@ export class AbnormalGoldComponent extends BasicTableComponent implements OnInit | |||||||
|   } |   } | ||||||
|   // 导出 |   // 导出 | ||||||
|   exprot() { |   exprot() { | ||||||
|     this.service.exportStart({ ...this.sf.value, pageSize: -1 }, this.service.$api_get_exportAbnormalAmountPage); |     this.service.exportStart({ ...this.sf?.value, pageSize: -1 }, this.service.$api_get_exportAbnormalAmountPage); | ||||||
|   } |   } | ||||||
| } | } | ||||||
|  | |||||||
| @ -42,7 +42,7 @@ export class AdvanceCollectionComponent extends BasicTableComponent { | |||||||
|   }; |   }; | ||||||
|  |  | ||||||
|   exportList() { |   exportList() { | ||||||
|     this.service.exportStart({ ...this.sf.value, pageSize: -1 }, this.service.$api_get_reportYskBla); |     this.service.exportStart({ ...this.sf?.value, pageSize: -1 }, this.service.$api_get_reportYskBla); | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   private initSF(): SFSchema { |   private initSF(): SFSchema { | ||||||
|  | |||||||
| @ -84,7 +84,7 @@ export class CostManagementComponent extends BasicTableComponent implements OnIn | |||||||
|  |  | ||||||
|  |  | ||||||
|   exportList() { |   exportList() { | ||||||
|     this.service.exportStart({ ...this.sf.value, pageSize: -1 }, this.service.$api_get_exportPlatformAccountBalanceByOperator); |     this.service.exportStart({ ...this.sf?.value, pageSize: -1 }, this.service.$api_get_exportPlatformAccountBalanceByOperator); | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   routeTo(url: string, params?: any, status?: any) { |   routeTo(url: string, params?: any, status?: any) { | ||||||
|  | |||||||
| @ -70,7 +70,7 @@ export class DriverAccountComponent extends BasicTableComponent implements OnIni | |||||||
|   } |   } | ||||||
|  |  | ||||||
|   exportList() { |   exportList() { | ||||||
|     this.service.exportStart({ ...this.sf.value, pageSize: -1 }, this.service.$api_export_driver_account_page); |     this.service.exportStart({ ...this.sf?.value, pageSize: -1 }, this.service.$api_export_driver_account_page); | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   private initSF(): SFSchema { |   private initSF(): SFSchema { | ||||||
|  | |||||||
| @ -72,7 +72,7 @@ export class FreightAccountComponent extends BasicTableComponent implements OnIn | |||||||
|   } |   } | ||||||
|  |  | ||||||
|   exportList() { |   exportList() { | ||||||
|     this.service.exportStart({ ...this.sf.value, pageSize: -1 }, this.service.$api_get_exportShipperAccountBalanceByOperator); |     this.service.exportStart({ ...this.sf?.value, pageSize: -1 }, this.service.$api_get_exportShipperAccountBalanceByOperator); | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   private initSF(): SFSchema { |   private initSF(): SFSchema { | ||||||
|  | |||||||
| @ -263,6 +263,6 @@ export class PaymentRecordComponent extends BasicTableComponent implements OnIni | |||||||
|   } |   } | ||||||
|   // 导出 |   // 导出 | ||||||
|   exprot() { |   exprot() { | ||||||
|     this.service.exportStart({ ...this.sf.value, pageSize: -1 }, this.service.$api_get_asyncExportBillPaymentApplicationList); |     this.service.exportStart({ ...this.sf?.value, pageSize: -1 }, this.service.$api_get_asyncExportBillPaymentApplicationList); | ||||||
|   } |   } | ||||||
| } | } | ||||||
|  | |||||||
| @ -249,7 +249,7 @@ export class PlatformAccountComponent implements OnInit { | |||||||
|   } |   } | ||||||
|  |  | ||||||
|   exportList() { |   exportList() { | ||||||
|     this.service.exportStart({ ...this.sf.value, pageSize: -1 }, this.service.$api_get_exportPlatformAccountBalanceByOperator); |     this.service.exportStart({ ...this.sf?.value, pageSize: -1 }, this.service.$api_get_exportPlatformAccountBalanceByOperator); | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   // 提现 |   // 提现 | ||||||
|  | |||||||
| @ -76,7 +76,7 @@ export class RechargeRecordComponent extends BasicTableComponent implements OnIn | |||||||
|   } |   } | ||||||
|  |  | ||||||
|   exportList() { |   exportList() { | ||||||
|     this.service.exportStart({ ...this.sf.value, pageSize: -1 }, this.service.$api_get_exportPageByOperator); |     this.service.exportStart({ ...this.sf?.value, pageSize: -1 }, this.service.$api_get_exportPageByOperator); | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   private initSF(): SFSchema { |   private initSF(): SFSchema { | ||||||
|  | |||||||
| @ -262,6 +262,6 @@ export class RefundRecordComponent extends BasicTableComponent implements OnInit | |||||||
|   } |   } | ||||||
|   // 导出 |   // 导出 | ||||||
|   exprot() { |   exprot() { | ||||||
|     this.service.exportStart({ ...this.sf.value, pageSize: -1 }, this.service.$api_get_asyncExportBillRefundApplicationList); |     this.service.exportStart({ ...this.sf?.value, pageSize: -1 }, this.service.$api_get_asyncExportBillRefundApplicationList); | ||||||
|   } |   } | ||||||
| } | } | ||||||
|  | |||||||
| @ -225,6 +225,6 @@ export class TransactionFlowComponent extends BasicTableComponent { | |||||||
|     ]; |     ]; | ||||||
|   } |   } | ||||||
|   exportList() { |   exportList() { | ||||||
|     this.service.exportStart({ ...this.sf.value, pageSize: -1 }, this.service.$api_get_exportAccountBalanceDetailPage); |     this.service.exportStart({ ...this.sf?.value, pageSize: -1 }, this.service.$api_get_exportAccountBalanceDetailPage); | ||||||
|   } |   } | ||||||
| } | } | ||||||
|  | |||||||
| @ -78,7 +78,7 @@ export class VoucherSummaryComponent extends BasicTableComponent implements OnIn | |||||||
|   } |   } | ||||||
|  |  | ||||||
|   exportList() { |   exportList() { | ||||||
|     this.service.exportStart({ ...this.sf.value, pageSize: -1 }, this.service.$api_export_fico_vch_page); |     this.service.exportStart({ ...this.sf?.value, pageSize: -1 }, this.service.$api_export_fico_vch_page); | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   private initSF(): SFSchema { |   private initSF(): SFSchema { | ||||||
|  | |||||||
| @ -279,6 +279,6 @@ export class WithdrawalsRecordComponent extends BasicTableComponent { | |||||||
|   } |   } | ||||||
|   // 导出 |   // 导出 | ||||||
|   exprot() { |   exprot() { | ||||||
|     this.service.exportStart({ ...this.sf.value, pageSize: -1 }, this.service.$api_get_asyncExportRefundApplicationList); |     this.service.exportStart({ ...this.sf?.value, pageSize: -1 }, this.service.$api_get_asyncExportRefundApplicationList); | ||||||
|   } |   } | ||||||
| } | } | ||||||
|  | |||||||
| @ -55,7 +55,7 @@ export class BillingOrderComponent implements OnInit { | |||||||
|   } |   } | ||||||
|  |  | ||||||
|   export() { |   export() { | ||||||
|     this.service.exportStart({ ...this.sf.value, pageSize: -1 }, this.service.$api_export_InvoicedBillInfoPage); |     this.service.exportStart({ ...this.sf?.value, pageSize: -1 }, this.service.$api_export_InvoicedBillInfoPage); | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   private initSF(): SFSchema { |   private initSF(): SFSchema { | ||||||
|  | |||||||
| @ -298,9 +298,9 @@ export class ETCBlacklistComponent implements OnInit { | |||||||
|   // 导出 |   // 导出 | ||||||
|   exprot() { |   exprot() { | ||||||
|     if (this.tabType == 1) { |     if (this.tabType == 1) { | ||||||
|       this.service.exportStart({ ...this.sf.value, pageSize: -1 }, this.service.$api_get_aficoShipperWhiteList_asyncExport); |       this.service.exportStart({ ...this.sf?.value, pageSize: -1 }, this.service.$api_get_aficoShipperWhiteList_asyncExport); | ||||||
|     } else { |     } else { | ||||||
|       this.service.exportStart({ ...this.sf.value, pageSize: -1 }, this.service.$api_get_ficoCarWhiteList_asyncExport); |       this.service.exportStart({ ...this.sf?.value, pageSize: -1 }, this.service.$api_get_ficoCarWhiteList_asyncExport); | ||||||
|     } |     } | ||||||
|   } |   } | ||||||
| } | } | ||||||
|  | |||||||
| @ -318,7 +318,7 @@ export class InvoiceRequestedComponent { | |||||||
|  |  | ||||||
|   // 导出 |   // 导出 | ||||||
|   exprot() { |   exprot() { | ||||||
|     this.service.exportStart({ ...this.sf.value, pageSize: -1 }, this.service.$api_export_invoice_requested_page); |     this.service.exportStart({ ...this.sf?.value, pageSize: -1 }, this.service.$api_export_invoice_requested_page); | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   private initSF(): SFSchema { |   private initSF(): SFSchema { | ||||||
|  | |||||||
		Reference in New Issue
	
	Block a user