This commit is contained in:
wangshiming
2022-04-28 20:21:04 +08:00
parent a538eebde3
commit 6cc12ff451
16 changed files with 17 additions and 17 deletions

View File

@ -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 = '提示') {

View File

@ -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);
} }
} }

View File

@ -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 {

View File

@ -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) {

View File

@ -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 {

View File

@ -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 {

View File

@ -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);
} }
} }

View File

@ -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);
} }
// 提现 // 提现

View File

@ -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 {

View File

@ -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);
} }
} }

View File

@ -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);
} }
} }

View File

@ -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 {

View File

@ -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);
} }
} }

View File

@ -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 {

View File

@ -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);
} }
} }
} }

View File

@ -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 {