修改测试问题

This commit is contained in:
zhujiyan
2024-06-05 13:28:21 +08:00
parent 709ddc143b
commit ae5339eff3
19 changed files with 652 additions and 3397 deletions

View File

@@ -15,6 +15,29 @@ export const addMointorPointTempLinedebug = (data: any) => {
})
}
/**
* 重新发起监测点联调表单数据
*/
export const updateMointorPointTempLinedebug = (data: any) => {
return createAxios({
url: '/supervision-boot/tempLinedebug/update',
method: 'POST',
data: data
})
}
/**
* 取消发起监测点联调表单数据
*/
export const cancelMointorPointTempLinedebug = (data: any) => {
return createAxios({
url: '/supervision-boot/tempLinedebug/cancel',
method: 'POST',
data: data
})
}
/**
* 根据id获取监测点联调的详细数据
*/