From 2b78ecf97aea37d474c78a110f110270d90ce8eb Mon Sep 17 00:00:00 2001 From: selia-zx <1771203023@qq.com> Date: Fri, 22 May 2026 16:49:24 +0800 Subject: [PATCH] =?UTF-8?q?1.=E4=BF=AE=E6=94=B9=E4=B8=BB=E6=9C=BA=E8=AF=A6?= =?UTF-8?q?=E6=83=85=E9=A1=B5=E9=9D=A2=E5=86=85=E5=AE=B9=202.=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E8=AE=BE=E5=A4=87=E7=9B=91=E6=8E=A7=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E5=8D=95=E4=BD=8D=203.=E9=A6=96=E9=A1=B5=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E7=A9=BA=E8=B0=83=E5=86=B7=E6=BA=90=E7=B3=BB=E7=BB=9FEER?= =?UTF-8?q?=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development | 2 +- .env.production | 2 +- package.json | 2 +- src/api/index.js | 7 + src/assets/styles/bigScreen.scss | 20 + src/store/modules/permission.js | 6 +- .../centerairC/sysMonitor/hostDetails.vue | 556 +++++------- .../centerairC/sysMonitor/monitorCenter.vue | 10 +- src/views/components/sysEnergy.vue | 798 ++++++++++++++++++ ...{monitorCenter.vue => hrMonitorCenter.vue} | 0 .../heatRecoverySys/deviceMonitor/index.vue | 2 +- src/views/index.vue | 440 +++++----- src/views/login.vue | 2 +- vue.config.js | 2 +- 14 files changed, 1273 insertions(+), 576 deletions(-) create mode 100644 src/views/components/sysEnergy.vue rename src/views/heatRecoverySys/deviceMonitor/{monitorCenter.vue => hrMonitorCenter.vue} (100%) diff --git a/.env.development b/.env.development index 9579ac2..5a51382 100644 --- a/.env.development +++ b/.env.development @@ -1,5 +1,5 @@ # 页面标题 -VUE_APP_TITLE = 铭汉空压热回收系统 +VUE_APP_TITLE = 铭汉节能岛系统 # 开发环境配置 ENV = 'development' diff --git a/.env.production b/.env.production index 87530e2..c1927c5 100644 --- a/.env.production +++ b/.env.production @@ -1,5 +1,5 @@ # 页面标题 -VUE_APP_TITLE = 铭汉空压热回收系统 +VUE_APP_TITLE = 铭汉节能岛系统 # 生产环境配置 ENV = 'production' diff --git a/package.json b/package.json index b229024..7b20fa1 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "mh", "version": "3.8.8", - "description": "铭汉空压热回收系统", + "description": "铭汉节能岛系统", "author": "铭汉", "license": "MIT", "scripts": { diff --git a/src/api/index.js b/src/api/index.js index 8d33f89..c35f435 100644 --- a/src/api/index.js +++ b/src/api/index.js @@ -53,3 +53,10 @@ export function ersDatas(query) { params: query, }); } +// 空调系统eer +export function getCoeData() { + return request({ + url: "/pro/overview/getCoe", + method: "get", + }); +} \ No newline at end of file diff --git a/src/assets/styles/bigScreen.scss b/src/assets/styles/bigScreen.scss index db29366..f7edabe 100644 --- a/src/assets/styles/bigScreen.scss +++ b/src/assets/styles/bigScreen.scss @@ -749,6 +749,26 @@ // 首页 .project-data { margin: 0.16rem 0 !important; + + .sysBg { + border-radius: 0.08rem !important; + + .sysBg-title { + padding: 0.12rem 0.16rem !important; + font-size: 0.16rem !important; + letter-spacing: 0.02rem !important; + + &::before { + width: 0.03rem !important; + } + + &::after { + right: 0.12rem !important; + width: 0.08rem !important; + height: 0.08rem !important; + } + } + } } .form-header { font-size: 0.15rem !important; diff --git a/src/store/modules/permission.js b/src/store/modules/permission.js index 1e63170..06336dc 100644 --- a/src/store/modules/permission.js +++ b/src/store/modules/permission.js @@ -102,11 +102,11 @@ const permission = { // 定义要添加的多个路由对象数组 const additionalRoutes2 = [ { - path: "/monitorCenter", - name: "monitorCenter", + path: "/hrMonitorCenter", + name: "hrMonitorCenter", hidden: true, component: () => - import("@/views/heatRecoverySys/deviceMonitor/monitorCenter"), + import("@/views/heatRecoverySys/deviceMonitor/hrMonitorCenter"), meta: { title: "系统监测", icon: "screen" }, }, // 可以继续添加更多路由对象 diff --git a/src/views/centerairC/sysMonitor/hostDetails.vue b/src/views/centerairC/sysMonitor/hostDetails.vue index bb6dbdc..3c60bdf 100644 --- a/src/views/centerairC/sysMonitor/hostDetails.vue +++ b/src/views/centerairC/sysMonitor/hostDetails.vue @@ -1,102 +1,37 @@