diff --git a/src/api/supervision-boot/jointDebugList/index.ts b/src/api/supervision-boot/jointDebugList/index.ts index fa08864c..002de82b 100644 --- a/src/api/supervision-boot/jointDebugList/index.ts +++ b/src/api/supervision-boot/jointDebugList/index.ts @@ -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获取监测点联调的详细数据 */ diff --git a/src/components/table/header/index.vue b/src/components/table/header/index.vue index 36e6595f..b526d9e8 100644 --- a/src/components/table/header/index.vue +++ b/src/components/table/header/index.vue @@ -2,14 +2,14 @@