检查工单

This commit is contained in:
Teo
2025-04-17 18:07:26 +08:00
parent 6a60ecc5e9
commit 85ee9fba77
11 changed files with 161 additions and 91 deletions

View File

@ -1,4 +1,6 @@
export interface QualityInspectionVO {
verificationType: string;
measure: string;
/**
* 巡检类型
*/

View File

@ -28,6 +28,6 @@ export function delOss(ossId: string | number | Array<string | number>) {
}
// 下载OSS对象存储
export function downLoadOss(ossId: string | number | Array<string | number>) {
return download('/safety/questionUserAnswer/exportFile', { idList: ossId }, '安全考试.zip');
export function downLoadOss(ossId: { id?: string | number; idList?: string | number | Array<string | number> }, url: string, fileName: string) {
return download(url, ossId, fileName);
}