【新增】 方案绑定软件环境检测

This commit is contained in:
dlaren
2025-08-06 22:55:27 +08:00
parent b5f5cd4ee4
commit 5ca909ba9f
17 changed files with 1423 additions and 267 deletions

19
src/api/exam/app/index.ts Normal file
View File

@@ -0,0 +1,19 @@
import request from '@/config/axios'
export interface AppVO {
appName: string // 名字
taskId: string // 状态
}
// 新增
export const createAppCheck = async (data: any) => {
return await request.post({ url: '/exam/app/insertAppCheck', data: data })
}
// 查询
export const getAppCheck = async (taskId: string) => {
return await request.get({ url: '/exam/app/getAppCheckList/' + taskId })
}
// 查询
export const deleteAppCheck = async (id: string) => {
return await request.get({ url: '/exam/app/delete/' + id })
}