预见测代码

This commit is contained in:
2024-12-23 21:02:00 +08:00
parent f17f5c9925
commit 24f12a3590
4 changed files with 232 additions and 78 deletions

View File

@@ -2,6 +2,11 @@ import type { Device } from '@/api/device/interface/device'
import http from '@/api'
export const startTest = (params) => {
return http.post(`/prepare/startTest`, params,{ loading: false })
export const startProTest = (params) => {
return http.post(`/prepare/startPreTest`, params,{ loading: false })
}
export const closePreTest = (params) => {
return http.post(`/prepare/closePreTest`, params,{ loading: false })
}