From 31afc15f49dcaa36f24e5ef39c6ca72fe007ebba Mon Sep 17 00:00:00 2001 From: zhujiyan <17812234322@163.com> Date: Mon, 3 Jun 2024 18:00:32 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=81=E7=A8=8B=E8=AF=A6=E6=83=85=E5=8E=86?= =?UTF-8?q?=E5=8F=B2=E8=AE=B0=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/supervision-boot/interfere/index.ts | 12 +++ .../supervision-boot/monitorpoint/index.ts | 9 ++ src/api/supervision-boot/plan/index.ts | 9 +- src/components/table/header/index.vue | 2 +- .../interferenceUserTable.vue | 12 ++- .../components/undocumented/addForm.vue | 18 +++- .../components/undocumented/index.vue | 85 ++++++++------- .../pqs/supervise/plan/components/addForm.vue | 59 ++++------ .../pqs/supervise/plan/components/detail.vue | 2 + src/views/pqs/supervise/plan/index.vue | 101 ++++++------------ .../components/monitorpoint/addForm.vue | 18 +++- .../components/monitorpoint/index.vue | 90 ++++++---------- .../components/terminainal/index.vue | 27 +++-- src/views/system/bpm/task/done/index.vue | 2 +- src/views/system/bpm/task/todo/index.vue | 3 +- 15 files changed, 223 insertions(+), 226 deletions(-) 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 @@