This commit is contained in:
wangshiming
2022-05-11 17:57:00 +08:00
parent ba22540580
commit c0dc0f1a85
6 changed files with 65 additions and 34 deletions

View File

@ -268,6 +268,6 @@ export class TaxManagementIndividualCollectComponent extends BasicTableComponent
// 导出
exprot() {
this.service.exportStart({ ...this.sfValue, pageSize: -1 }, this.service.$api_taxSummary_export);
this.service.exportStart({ ...this.reqParams, pageSize: -1 }, this.service.$api_taxSummary_export);
}
}

View File

@ -431,7 +431,7 @@ export class TaxManagementIndividualDeclareComponent extends BasicTableComponent
// 导出
exprot() {
this.service.exportStart({ ...this.sfValue, pageSize: -1 }, this.service.$api_taxDeclaration_export);
this.service.exportStart({ ...this.reqParams, pageSize: -1 }, this.service.$api_taxDeclaration_export);
}
openWainingModal(content: string, title = '提示') {

View File

@ -349,7 +349,7 @@ export class TaxManagementIndividualIncomeComponent extends BasicTableComponent
// 导出
exprot() {
this.service.exportStart({ ...this.sfValue, pageSize: -1 }, this.service.$api_taxIncome_export);
this.service.exportStart({ ...this.sfValue,declareStatus: this.selectedIndex, pageSize: -1 }, this.service.$api_taxIncome_export);
}
handleOK() {}

View File

@ -312,7 +312,7 @@ export class TaxManagementInvoiceReportingComponent extends BasicTableComponent
* 异步导出
*/
export() {
this.service.exportStart(this.reqParams, this.service.$api_invoiceUpload_export);
this.service.exportStart({...this.reqParams, pageSize: -1 }, this.service.$api_invoiceUpload_export);
}
openWainingModal(content: string, title = '提示') {

View File

@ -467,7 +467,7 @@ export class TaxManagementOrderReportingComponent extends BasicTableComponent im
* 异步导出
*/
export() {
this.service.exportStart(this.sf?.value, this.service.$api_async_export_order_reporting_list);
this.service.exportStart({...this.reqParams, pageSize: -1} ,this.service.$api_async_export_order_reporting_list);
}
openWainingModal(content: string, title = '提示') {