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 @@