fix bug
This commit is contained in:
@ -224,7 +224,12 @@ export class VehicleComponentsAuditComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
// 导出
|
// 导出
|
||||||
exportFire() {
|
exportFire() {
|
||||||
this.service.downloadFile(this.service.$api_carLicenseAudit_export, this.reqParams);
|
this.service.request(this.service.$api_carLicenseAudit_export, this.reqParams).subscribe((res: any) => {
|
||||||
|
if(res) {
|
||||||
|
this.service.msgSrv.success('导出成功!')
|
||||||
|
return
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
addModal() {
|
addModal() {
|
||||||
const i = {
|
const i = {
|
||||||
|
|||||||
@ -283,6 +283,11 @@ export class VehicleComponentsListComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
// 导出
|
// 导出
|
||||||
exportFire() {
|
exportFire() {
|
||||||
this.service.downloadFile(this.service.$api_carLicense_export, this.reqParams);
|
this.service.request(this.service.$api_carLicense_export, this.reqParams).subscribe((res: any) => {
|
||||||
|
if(res) {
|
||||||
|
this.service.msgSrv.success('导出成功!')
|
||||||
|
return
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user