+
@@ -19,6 +19,8 @@
当月节省量:{{ monthlySavings }}kwh
+
+
@@ -39,7 +41,7 @@
@@ -56,6 +58,7 @@
@@ -613,12 +439,12 @@ getList()
.device-content {
display: flex;
justify-content: center;
- padding-top: 220px;
+ padding-top: 190px;
.device-box {
display: flex;
width: 2194px;
- height: 1500px;
+ height: 1600px;
background: #064B66;
border-radius: 20px;
border: 2px solid #05FEFF;
@@ -627,7 +453,7 @@ getList()
.box-left {
padding-left: 24px;
width: 300px;
- height: 1498px;
+ height: 1596px;
background: #0D5A7A;
border-radius: 20px 0px 0px 20px;
@@ -683,36 +509,39 @@ getList()
}
.collection-frequency {
+ height: 60px;
+ display: flex;
+ align-items: center;
position: absolute;
right: 102px;
> span:first-child {
font-size: 38px !important;
+ white-space: pre;
+ margin-right: 15px;
}
- .units {
- position: relative;
+ :deep(.el-input__wrapper) {
+ width: 166px;
+ height: 56px;
+ background-color: transparent;
+ box-shadow: none;
+ border-radius: 6px;
+ border: 1px solid #05FEFF;
+ transform: none;
+ transition: none;
- input {
- width: 220px;
- height: 50px;
- border: 1px solid #05FEFF;
- background: transparent;
- margin-left: 14px;
- font-size: 35px;
+ .el-input__inner {
+ height: 54px;
+ font-size: 30px;
color: #FFFFFF;
- outline: none;
}
- }
- .units::after {
- content: "秒/次";
- position: absolute;
- right: 6px;
- top: 26%;
- transform: translateY(-50%);
- font-size: 35px;
- color: #08B7B8;
+ .el-input__suffix-inner {
+ font-size: 30px;
+ color: #08B7B8;
+ line-height: 40px;
+ }
}
}
}
diff --git a/src/views/login/index.vue b/src/views/login/index.vue
index 3ced737..804a9a2 100644
--- a/src/views/login/index.vue
+++ b/src/views/login/index.vue
@@ -115,7 +115,7 @@ onBeforeUnmount(() => {
.login-box {
height: 100%;
- background-color: #4158d0;
+ background-color: #063247;
//background-image: linear-gradient(
// 43deg,
// #4158d0 0%,
diff --git a/src/views/tunnel/index.vue b/src/views/tunnel/index.vue
index 7128a52..4c7ae8c 100644
--- a/src/views/tunnel/index.vue
+++ b/src/views/tunnel/index.vue
@@ -325,7 +325,6 @@ const nextBtn = () => {
const initWebSocket = () => {
// let wsUrl = `ws://192.168.31.175:9000/websocket/equipment/${token}/${serialNumber.value}`
let wsUrl = `ws://web-tunnel.feashow.com/api/wstunnel/websocket/equipment/${token}/${serialNumber.value}`;
- console.log(wsUrl);
socket = new WebSocket(wsUrl);
//连接发生错误的回调方法
socket.onerror = function () {
From e5e7ed34127ef1b0e86a2f6ea7e1bbefa3930dc3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E9=82=93=E6=B4=81?= <209192278@qq.com>
Date: Wed, 17 Jan 2024 15:19:29 +0800
Subject: [PATCH 17/34] =?UTF-8?q?=E9=82=93=E6=B4=81:=20=E6=B3=A8=E9=87=8Al?=
=?UTF-8?q?og?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/tunnel/index.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/views/tunnel/index.vue b/src/views/tunnel/index.vue
index 4c7ae8c..f9ea77f 100644
--- a/src/views/tunnel/index.vue
+++ b/src/views/tunnel/index.vue
@@ -336,7 +336,7 @@ const initWebSocket = () => {
};
//接收到消息的回调方法
socket.onmessage = function (event) {
- console.log("服务器返回的信息: ", JSON.parse(event.data));
+ // console.log("服务器返回的信息: ", JSON.parse(event.data));
const type = JSON.parse(event.data).type;
const data = JSON.parse(event.data).data;
if (type === "equipment") {
From 2fce431c4321c3d7875a3a3c93febf40d47adfbb Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E9=82=93=E6=B4=81?= <209192278@qq.com>
Date: Wed, 17 Jan 2024 16:08:06 +0800
Subject: [PATCH 18/34] =?UTF-8?q?=E9=82=93=E6=B4=81:=20=E5=88=86=E6=B5=81?=
=?UTF-8?q?=E9=98=80=E5=80=BC=E6=A0=B7=E5=BC=8F=E5=8F=8A=E8=AE=BE=E5=A4=87?=
=?UTF-8?q?=E6=8E=A5=E5=8F=A3=E5=AF=B9=E6=8E=A5?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/components/content/fanInfo/FanInfo.vue | 176 +++++++++++++--------
src/views/device-manage/index.vue | 12 +-
src/views/tunnel/index.vue | 2 +-
3 files changed, 113 insertions(+), 77 deletions(-)
diff --git a/src/components/content/fanInfo/FanInfo.vue b/src/components/content/fanInfo/FanInfo.vue
index b2538ec..5268939 100644
--- a/src/components/content/fanInfo/FanInfo.vue
+++ b/src/components/content/fanInfo/FanInfo.vue
@@ -56,21 +56,24 @@