通用配置

This commit is contained in:
sjl
2024-11-19 16:30:03 +08:00
parent dd527a4994
commit 543662a2ac
10 changed files with 329 additions and 65 deletions

View File

@@ -0,0 +1,17 @@
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)
}