不合格项复检

This commit is contained in:
caozehui
2025-03-03 11:35:12 +08:00
parent bf5f4eab77
commit faa0bc54a6
5 changed files with 41 additions and 12 deletions

View File

@@ -1,8 +1,12 @@
import http from "@/api";
import {CheckData} from "@/api/check/interface";
export const getBigTestItem = (planId: string) => {
return http.get(`/adPlan/getBigTestItem?planId=${planId}`);
export const getBigTestItem = (params: {
reCheckType:number,
planId: string,
devId: string,
}) => {
return http.post(`/adPlan/getBigTestItem`, params, {loading: false});
}
/**