From 6ef2a6049b45556fcd254d5b7db4d6c36eed466a Mon Sep 17 00:00:00 2001 From: sjl <1716605279@qq.com> Date: Mon, 26 May 2025 15:36:06 +0800 Subject: [PATCH] =?UTF-8?q?=E7=B3=BB=E6=95=B0=E6=A0=A1=E5=87=86=E4=BA=8C?= =?UTF-8?q?=E6=AC=A1=E7=A1=AE=E8=AE=A4=EF=BC=8C=E8=BE=93=E5=85=A5=E6=A1=86?= =?UTF-8?q?=E9=95=BF=E5=BA=A6=E9=99=90=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/api/device/interface/device.ts | 5 +- .../resource/components/resourcePopup.vue | 10 +- .../authority/role/components/rolePopup.vue | 4 +- .../user/components/passWordPopup.vue | 6 +- .../authority/user/components/userPopup.vue | 6 +- .../views/home/components/channelsTest.vue | 143 ++++++++++-------- .../views/home/components/writeTHPopup.vue | 12 +- .../devType/components/devTypePopup.vue | 2 +- .../machine/device/components/devicePopup.vue | 4 +- .../components/errorSystemPopup.vue | 2 +- .../views/machine/icd/components/icdPopup.vue | 4 +- .../testScript/components/testScriptPopup.vue | 2 +- .../testSource/components/parameterPopup.vue | 4 +- .../plan/planList/components/planPopup.vue | 2 +- frontend/src/views/plan/planList/index.vue | 1 + .../dictData/components/dataPopup.vue | 4 +- .../dictionary/dictPq/components/pqPopup.vue | 2 +- .../dictTree/components/treePopup.vue | 4 +- .../dictType/components/typePopup.vue | 4 +- .../template/components/reportPopup.vue | 4 +- 20 files changed, 122 insertions(+), 103 deletions(-) diff --git a/frontend/src/api/device/interface/device.ts b/frontend/src/api/device/interface/device.ts index 9f78107..b29f855 100644 --- a/frontend/src/api/device/interface/device.ts +++ b/frontend/src/api/device/interface/device.ts @@ -84,7 +84,10 @@ export namespace Device { devChns: number, } - + export interface ResTH { + temperature :number | null;//温度 + humidity:number | null;//湿度 + } /** * 被检设备表格查询分页返回的对象; */ diff --git a/frontend/src/views/authority/resource/components/resourcePopup.vue b/frontend/src/views/authority/resource/components/resourcePopup.vue index 1565f18..e1f1e89 100644 --- a/frontend/src/views/authority/resource/components/resourcePopup.vue +++ b/frontend/src/views/authority/resource/components/resourcePopup.vue @@ -14,10 +14,10 @@ /> - + - + - - + + - + diff --git a/frontend/src/views/authority/role/components/rolePopup.vue b/frontend/src/views/authority/role/components/rolePopup.vue index 86ee722..4e1ad1f 100644 --- a/frontend/src/views/authority/role/components/rolePopup.vue +++ b/frontend/src/views/authority/role/components/rolePopup.vue @@ -8,11 +8,11 @@ :rules='rules' > - + - + diff --git a/frontend/src/views/authority/user/components/passWordPopup.vue b/frontend/src/views/authority/user/components/passWordPopup.vue index 0dff840..fb3f703 100644 --- a/frontend/src/views/authority/user/components/passWordPopup.vue +++ b/frontend/src/views/authority/user/components/passWordPopup.vue @@ -7,13 +7,13 @@ :rules='rules' > - + - + - + diff --git a/frontend/src/views/authority/user/components/userPopup.vue b/frontend/src/views/authority/user/components/userPopup.vue index 9c781e2..99bac85 100644 --- a/frontend/src/views/authority/user/components/userPopup.vue +++ b/frontend/src/views/authority/user/components/userPopup.vue @@ -7,13 +7,13 @@ :rules='rules' > - + - + - + diff --git a/frontend/src/views/home/components/channelsTest.vue b/frontend/src/views/home/components/channelsTest.vue index 6efb613..ba7ad6e 100644 --- a/frontend/src/views/home/components/channelsTest.vue +++ b/frontend/src/views/home/components/channelsTest.vue @@ -1,5 +1,5 @@