This commit is contained in:
sjl
2025-09-09 09:14:52 +08:00
3 changed files with 26 additions and 0 deletions

View File

@@ -154,4 +154,9 @@ export const mergeSubPlanCheckData = (params: Plan.ResPlan) => {
//根据误差体系id获取测试项
export const getPqErrSysTestItemList = (params: {errorSysId : string}) => {
return http.get(`/pqErrSys/getTestItems?id=${params.errorSysId}`)
}
// 获取计划项目成员
export const getMemberList = (params: {id : string}) => {
return http.get(`/adPlan/getMemberList?planId=${params.id}`)
}