From a0839f1ed4a23a283802496c3a7a14006044fa71 Mon Sep 17 00:00:00 2001
From: wj <347312259@qq.com>
Date: Thu, 1 Jun 2023 09:29:00 +0800
Subject: [PATCH] =?UTF-8?q?=E6=B2=99=E7=9B=98=E5=AD=97=E4=BD=93=E6=A0=B7?=
=?UTF-8?q?=E5=BC=8F?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
psdc-ui/src/views/emonitor/sp/index.vue | 19 ++++++++++++++-----
1 file changed, 14 insertions(+), 5 deletions(-)
diff --git a/psdc-ui/src/views/emonitor/sp/index.vue b/psdc-ui/src/views/emonitor/sp/index.vue
index 5c021da..2a759d5 100644
--- a/psdc-ui/src/views/emonitor/sp/index.vue
+++ b/psdc-ui/src/views/emonitor/sp/index.vue
@@ -1,7 +1,7 @@
-
{{data.name}}
-
运行状态:{{data.status}}
+
+
运行状态:{{data.status}}
@@ -21,9 +21,9 @@ export default {
if(res.data!=null) {
data.name = res.data.deviceName
if (res.data.deviceRunstatus == true) {
- data.status = '开启'
+ data.status = '正在运行'
} else {
- data.status = '关闭'
+ data.status = '停止运行'
}
}
})
@@ -40,8 +40,17 @@ export default {