联调 试运行 编辑功能 修改 在线监测页面

This commit is contained in:
GGJ
2024-07-05 09:05:22 +08:00
parent 2fc40a2136
commit a398ca6361
11 changed files with 401 additions and 27 deletions

View File

@@ -10,18 +10,31 @@ export const addRunTest = (data: any) => {
data: data
})
}
export const update = (data: any) => {
return createAxios({
url: '/supervision-boot/supervisionTempLineRunTest/update',
method: 'POST',
data: data
})
}
export const cancel = (data: any) => {
return createAxios({
url: '/supervision-boot/supervisionTempLineRunTest/cancel',
method: 'POST',
data: data
})
}
export const getRunTestById = (id: string) => {
return createAxios({
url: '/supervision-boot/supervisionTempLineRunTest/getRunTestById?id=' + id,
method: 'get',
method: 'get'
})
}
export const initiateWarningLeaflet = (data: any) => {
return createAxios({
url: '/supervision-boot/lineRunTestProblem/initiateWarningLeaflet',
method: 'POST',
data
})
}