新建检测计划时,检测项下拉框要和误差体系里配置的要一致

This commit is contained in:
sjl
2025-09-01 14:53:30 +08:00
parent 4364f88526
commit 2ec3102eff
2 changed files with 80 additions and 22 deletions

View File

@@ -148,4 +148,9 @@ export const importSubPlanCheckData = (params: Plan.ResPlan) => {
// 合并子检测计划检测结果数据
export const mergeSubPlanCheckData = (params: Plan.ResPlan) => {
return http.upload(`/adPlan/mergePlanCheckData?planId=${params.id}`)
}
//根据误差体系id获取测试项
export const getPqErrSysTestItemList = (params: Plan.ResPlan) => {
return http.get(`/pqErrSys/getTestItems?id=${params.errorSysId}`)
}