干扰源常态化管理页面
This commit is contained in:
27
src/api/supervision-boot/lineRunTest/index.ts
Normal file
27
src/api/supervision-boot/lineRunTest/index.ts
Normal file
@@ -0,0 +1,27 @@
|
||||
import createAxios from '@/utils/request'
|
||||
|
||||
/**
|
||||
* 发起监测点试运行
|
||||
*/
|
||||
export const addRunTest = (data: any) => {
|
||||
return createAxios({
|
||||
url: '/supervision-boot/supervisionTempLineRunTest/add',
|
||||
method: 'POST',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
export const getRunTestById = (id: string) => {
|
||||
return createAxios({
|
||||
url: '/supervision-boot/supervisionTempLineRunTest/getRunTestById?id=' + id,
|
||||
method: 'get',
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user