This commit is contained in:
wangshiming
2022-04-06 11:04:29 +08:00
parent 5a2a668168
commit 170501f16d
3 changed files with 12 additions and 2 deletions

View File

@ -694,4 +694,12 @@ export class OrderManagementComplianceAuditComponent implements OnInit {
}
}
}
// 导出
exprot() {
this.service.request(this.service.$api_get_asyncExportSpotCheckList, this.reqParams).subscribe((res: any) => {
if (res) {
this.service.msgSrv.success('导出成功,请去下载中心下载!');
}
});
}
}