Files
pqs-9100_client/frontend/src/api/system/base/index.ts

23 lines
454 B
TypeScript
Raw Normal View History

2025-07-01 14:58:11 +08:00
2024-11-19 16:30:03 +08:00
import http from '@/api'
import {type Base} from '@/api/system/base/interface'
//获取检测配置
export const getTestConfig = () => {
return http.get(`/sysTestConfig/getConfig`)
}
//编辑检测配置
export const updateTestConfig = (params: Base.ResTestConfig) => {
return http.post(`/sysTestConfig/update`, params)
}
2025-07-01 14:58:11 +08:00
//场景切换
export const updateScene = (params: any) => {
return http.post(`/sysTestConfig/update`,params)
}
2024-11-19 16:30:03 +08:00