Files
pqs-9100_client/frontend/src/api/device/testSource/index.ts

13 lines
459 B
TypeScript
Raw Normal View History

2024-11-18 09:02:57 +08:00
import type { ResPage } from '@/api/interface'
import type { TestSource } from '@/api/device/interface/testSource'
import http from '@/api'
/**
* @name
*/
// 获取检测脚本列表
export const getTestSourceList = (params: TestSource.ReqTestSourceParams) => {
2024-10-31 08:51:30 +08:00
return http.post<ResPage<TestSource.TestSourceBO>>(`/testSource/list`, params)
// return http.post<ResPage<Role.ResRoleList>>(`${rePrefix}/testSource/list`, params)
}