新增场景切换

This commit is contained in:
sjl
2025-07-01 14:58:11 +08:00
parent 9fecf0ce3f
commit d2f0382bd9
7 changed files with 56 additions and 4 deletions

View File

@@ -1,3 +1,4 @@
import http from '@/api'
import {type Base} from '@/api/system/base/interface'
@@ -12,6 +13,10 @@ export const updateTestConfig = (params: Base.ResTestConfig) => {
return http.post(`/sysTestConfig/update`, params)
}
//场景切换
export const updateScene = (params: any) => {
return http.post(`/sysTestConfig/update`,params)
}