From 0d063e887cb96cc5218386876dd94aa67274c969 Mon Sep 17 00:00:00 2001
From: sjl <1716605279@qq.com>
Date: Thu, 21 Nov 2024 14:42:26 +0800
Subject: [PATCH] =?UTF-8?q?=E5=BE=AE=E8=B0=83?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
frontend/src/api/device/monitor/index.ts | 8 +-
.../src/layouts/components/Footer/index.vue | 21 ++-
.../machine/device/components/devicePopup.vue | 24 ++--
frontend/src/views/machine/device/index.vue | 6 +-
.../testScript/components/comparisonPopup.vue | 130 ++++++++++++++++++
.../testScript/components/testScriptPopup.vue | 75 ++++++++++
.../src/views/machine/testScript/index.vue | 30 ++--
frontend/src/views/system/base/index.vue | 5 +-
8 files changed, 271 insertions(+), 28 deletions(-)
create mode 100644 frontend/src/views/machine/testScript/components/comparisonPopup.vue
create mode 100644 frontend/src/views/machine/testScript/components/testScriptPopup.vue
diff --git a/frontend/src/api/device/monitor/index.ts b/frontend/src/api/device/monitor/index.ts
index 0782151..2b96bf7 100644
--- a/frontend/src/api/device/monitor/index.ts
+++ b/frontend/src/api/device/monitor/index.ts
@@ -7,22 +7,22 @@ import http from '@/api'
//获取监测点
export const getPqMonList = (params: Monitor.ReqPqMonParams) => {
- return http.post(`/pqMon/list`, params)
+ //return http.post(`/pqMon/list`, params)
}
//添加监测点
export const addPqMon = (params: Monitor.ResPqMon) => {
- return http.post(`/pqMon/add`, params)
+ //return http.post(`/pqMon/add`, params)
}
//编辑监测点
export const updatePqMon = (params: Monitor.ResPqMon) => {
- return http.post(`/pqMon/update`, params)
+ //return http.post(`/pqMon/update`, params)
}
//删除监测点
export const deletePqMon = (params: string[]) => {
- return http.post(`/pqMon/delete`, params)
+ //return http.post(`/pqMon/delete`, params)
}
diff --git a/frontend/src/layouts/components/Footer/index.vue b/frontend/src/layouts/components/Footer/index.vue
index a76ca37..a197d9f 100644
--- a/frontend/src/layouts/components/Footer/index.vue
+++ b/frontend/src/layouts/components/Footer/index.vue
@@ -38,8 +38,27 @@