diff --git a/src/api/exam/app/index.ts b/src/api/exam/app/index.ts index cec7952..4df3350 100644 --- a/src/api/exam/app/index.ts +++ b/src/api/exam/app/index.ts @@ -16,4 +16,7 @@ export const getAppCheck = async (taskId: string) => { // 查询 export const deleteAppCheck = async (id: string) => { return await request.get({ url: '/exam/app/delete/' + id }) -} \ No newline at end of file +} +export const createAppCheckList = async (taskId: string) => { + return await request.get({ url: '/exam/app/getAppCheckListByTaskId/' + taskId }) +} diff --git a/src/views/exam/specialty/index.vue b/src/views/exam/specialty/index.vue index 51715d7..dfe9dc0 100644 --- a/src/views/exam/specialty/index.vue +++ b/src/views/exam/specialty/index.vue @@ -1,34 +1,6 @@