edit
This commit is contained in:
@ -228,7 +228,7 @@ export class FreightComponentsEnterpriseAuditComponent implements OnInit {
|
||||
}
|
||||
|
||||
exportList() {
|
||||
const params = { ...this.sf.value, flag: this.tabType, listSource: 2 };
|
||||
const params = { ...this.sf.value, flag: this.tabType, listSource: 2, pageSize: -1 };
|
||||
this.service.downloadFile(this.service.$api_export_enterprise, params);
|
||||
}
|
||||
|
||||
|
||||
@ -166,7 +166,7 @@ export class FreightConfigComponent implements OnInit {
|
||||
}
|
||||
|
||||
exportList() {
|
||||
const params = { listSource: 1, pageIndex: this.st.pi, pageSize: this.st.ps };
|
||||
const params = { listSource: 1, pageSize: -1 };
|
||||
if (this.sf) {
|
||||
Object.assign(params, {
|
||||
...this.sf.value
|
||||
|
||||
@ -280,7 +280,7 @@ export class FreightComponentsListComponent implements OnInit {
|
||||
enum: [
|
||||
{ label: '全部', value: '' },
|
||||
{ label: '是', value: true },
|
||||
{ label: '否', value: false },
|
||||
{ label: '否', value: false }
|
||||
],
|
||||
default: '',
|
||||
ui: {
|
||||
@ -439,7 +439,7 @@ export class FreightComponentsListComponent implements OnInit {
|
||||
}
|
||||
|
||||
exportList() {
|
||||
const params = { listSource: 1 };
|
||||
const params = { listSource: 1, pageSize: -1 };
|
||||
if (this.sf) {
|
||||
Object.assign(params, {
|
||||
...this.sf.value
|
||||
|
||||
Reference in New Issue
Block a user