【新增】 方案绑定软件环境检测
This commit is contained in:
19
src/api/exam/app/index.ts
Normal file
19
src/api/exam/app/index.ts
Normal 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 })
|
||||
}
|
Reference in New Issue
Block a user