From 3ffd4c9ed137807b22d522fcce9e85b80554684a Mon Sep 17 00:00:00 2001 From: WindowBird <13870814+windows-bird@user.noreply.gitee.com> Date: Tue, 14 Oct 2025 08:50:09 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=AE=BE=E5=A4=87=E6=8E=A7?= =?UTF-8?q?=E5=88=B6=E7=95=8C=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- page_user/luru/controlDevice.vue | 385 +++++++++++++++++-------------- 1 file changed, 215 insertions(+), 170 deletions(-) diff --git a/page_user/luru/controlDevice.vue b/page_user/luru/controlDevice.vue index 0a6ab60..2b8e46b 100644 --- a/page_user/luru/controlDevice.vue +++ b/page_user/luru/controlDevice.vue @@ -19,12 +19,18 @@ type="text" /> - MAC号:{{ obj.mac == undefined ? '--' : obj.mac }} - 电压:{{ obj.voltage == undefined ? '--' : obj.voltage }}V - 功率:{{ obj.realTimePower == undefined ? '--' : obj.realTimePower }}W + MAC号:{{ obj.mac == undefined ? "--" : obj.mac }} + + + 电压:{{ obj.voltage == undefined ? "--" : obj.voltage }}V + + + 功率:{{ obj.realTimePower == undefined ? "--" : obj.realTimePower }}W + + + 电流:{{ obj.electricity == undefined ? "--" : obj.electricity }}A - 电流:{{ obj.electricity == undefined ? '--' : obj.electricity }}A 网络: 离线 @@ -35,12 +41,18 @@ 关闭 开启 - 版本号:{{ obj.version == undefined ? '--' : obj.version }} - 最后更新时间:{{ obj.lastPullTime == undefined ? '--' : obj.lastPullTime }} + 版本号:{{ obj.version == undefined ? "--" : obj.version }} - 最后在线时间:{{ obj.lastOnlineTime == undefined ? '--' : obj.lastOnlineTime }} + 最后更新时间:{{ + obj.lastPullTime == undefined ? "--" : obj.lastPullTime + }} + + + 最后在线时间:{{ + obj.lastOnlineTime == undefined ? "--" : obj.lastOnlineTime + }} @@ -68,190 +80,199 @@