diff --git a/src/api/supervision-boot/interfere/index.ts b/src/api/supervision-boot/interfere/index.ts index 916c1fd1..f7dac756 100644 --- a/src/api/supervision-boot/interfere/index.ts +++ b/src/api/supervision-boot/interfere/index.ts @@ -15,6 +15,18 @@ export const submitFormData = (data: any) => { }) } +/** + * 重新发起表单数据(编辑) + */ +export const updateFormData = (data: any) => { + return createAxios({ + url: '/supervision-boot/userReport/update', + method: 'POST', + data: data + }) +} + + export const submitGoNet = (data: any) => { return createAxios({ url: '/supervision-boot/userReportNormal/addUserReportNormal', diff --git a/src/api/supervision-boot/monitorpoint/index.ts b/src/api/supervision-boot/monitorpoint/index.ts index d7c91fc7..3908f9d4 100644 --- a/src/api/supervision-boot/monitorpoint/index.ts +++ b/src/api/supervision-boot/monitorpoint/index.ts @@ -15,6 +15,15 @@ export const addMointorPointFormData = (data: any) => { }) } +//重新发起监测点信息 +export const updateMointorPointFormData = (data: any) => { + return createAxios({ + url: '/supervision-boot/tempLine/update', + method: 'POST', + data: data + }) +} + /** * 查询干扰源列表数据 diff --git a/src/api/supervision-boot/plan/index.ts b/src/api/supervision-boot/plan/index.ts index f11079f8..333b690e 100644 --- a/src/api/supervision-boot/plan/index.ts +++ b/src/api/supervision-boot/plan/index.ts @@ -15,7 +15,14 @@ export const addPlanFormData = (data: any) => { }) } - +//重新发起技术监督计划表单数据 +export const updatePlanFormData = (data: any) => { + return createAxios({ + url: '/supervision-boot/superPlan/updatePlan', + method: 'POST', + data: data + }) +} /** * 根据当前登陆用户的部门id查询人员 diff --git a/src/components/table/header/index.vue b/src/components/table/header/index.vue index 65240aa9..36e6595f 100644 --- a/src/components/table/header/index.vue +++ b/src/components/table/header/index.vue @@ -9,7 +9,7 @@ label-position="left" :inline="true" > - + diff --git a/src/views/pqs/supervise/interfere/components/normalizationManager/interferenceUserTable.vue b/src/views/pqs/supervise/interfere/components/normalizationManager/interferenceUserTable.vue index 9e340856..67b2191c 100644 --- a/src/views/pqs/supervise/interfere/components/normalizationManager/interferenceUserTable.vue +++ b/src/views/pqs/supervise/interfere/components/normalizationManager/interferenceUserTable.vue @@ -3,7 +3,7 @@