From d376767755b3280c3a4640de1392b9a8a3f19355 Mon Sep 17 00:00:00 2001 From: selia-zx <1771203023@qq.com> Date: Tue, 3 Mar 2026 15:28:57 +0800 Subject: [PATCH] =?UTF-8?q?1=E3=80=81=E9=A6=96=E9=A1=B5=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E4=BB=AA=E8=A1=A8=E7=9B=98=EF=BC=8C=E5=B1=95=E7=A4=BA=E5=90=84?= =?UTF-8?q?=E4=B8=AA=E8=AE=BE=E5=A4=87=E7=BB=84=E7=9A=84eer=EF=BC=9B=202?= =?UTF-8?q?=E3=80=81=E6=B7=BB=E5=8A=A0=E6=97=A5=E5=8E=86=E6=8E=A7=E5=88=B6?= =?UTF-8?q?=E4=B8=80=E9=94=AE=E5=BC=80=E5=85=B3=E6=9C=BA=EF=BC=88=E5=88=86?= =?UTF-8?q?=E6=97=B6=E6=AE=B5=E6=8E=A7=E5=88=B6=EF=BC=89=E3=80=81=E8=8A=82?= =?UTF-8?q?=E5=81=87=E6=97=A5=E8=87=AA=E5=B7=B1=E6=8E=A7=E5=88=B6=EF=BC=9B?= =?UTF-8?q?=203=E3=80=81=E7=83=AD=E5=B9=B3=E8=A1=A1=E8=AE=B0=E5=BD=95?= =?UTF-8?q?=E5=88=86=E6=9E=90=EF=BC=88=E5=86=B7=E5=86=BB=E6=B0=B4=E4=BE=A7?= =?UTF-8?q?=E4=B8=8E=E5=86=B7=E5=8D=B4=E6=B0=B4=E4=BE=A7=E7=9A=84=E8=83=BD?= =?UTF-8?q?=E9=87=8F=E5=AF=B9=E6=AF=94=E3=80=81=E7=83=AD=E5=B9=B3=E8=A1=A1?= =?UTF-8?q?=E7=8E=87=E3=80=81=E7=83=AD=E5=B9=B3=E8=A1=A1=E5=81=8F=E5=B7=AE?= =?UTF-8?q?=EF=BC=89=EF=BC=8C=E5=85=B6=E4=B8=AD=E7=83=AD=E5=B9=B3=E8=A1=A1?= =?UTF-8?q?=E7=8E=87=E3=80=81=E7=83=AD=E5=B9=B3=E8=A1=A1=E5=81=8F=E5=B7=AE?= =?UTF-8?q?=E6=98=AF=E6=8A=98=E7=BA=BF=EF=BC=8C=E5=85=B6=E4=BD=99=E6=98=AF?= =?UTF-8?q?=E6=9F=B1=E7=8A=B6=E5=9B=BE=EF=BC=9B=E9=A2=97=E7=B2=92=E5=BA=A6?= =?UTF-8?q?=E6=98=AF=E6=AF=8F=E5=88=86=E9=92=9F=E6=98=BE=E7=A4=BA=EF=BC=9B?= =?UTF-8?q?=204=E3=80=81=E7=9B=91=E6=8E=A7=E7=95=8C=E9=9D=A2=E5=8F=B3?= =?UTF-8?q?=E4=B8=8B=E8=A7=92=E6=B7=BB=E5=8A=A0=E7=83=AD=E5=B9=B3=E8=A1=A1?= =?UTF-8?q?=E7=8E=87=E5=AE=9E=E6=97=B6=E6=98=BE=E7=A4=BA=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- git | 0 src/assets/styles/element-ui.scss | 18 + src/views/centerairC/dateSwitch/index.vue | 514 +++++++ src/views/centerairC/equilibrium/index.vue | 1205 +++++++++++++++++ .../centerairC/sysMonitor/monitorCenter.vue | 23 +- src/views/components/aircAndWindcMeter.vue | 2 +- src/views/components/hotWater.vue | 2 +- src/views/components/sysEnergy.vue | 815 +++++++++++ src/views/components/temMeter.vue | 2 +- src/views/components/viewColdSys.vue | 8 +- src/views/index.vue | 12 +- 11 files changed, 2590 insertions(+), 11 deletions(-) create mode 100644 git create mode 100644 src/views/centerairC/dateSwitch/index.vue create mode 100644 src/views/centerairC/equilibrium/index.vue create mode 100644 src/views/components/sysEnergy.vue diff --git a/git b/git new file mode 100644 index 0000000..e69de29 diff --git a/src/assets/styles/element-ui.scss b/src/assets/styles/element-ui.scss index f1c1197..f26dd4a 100644 --- a/src/assets/styles/element-ui.scss +++ b/src/assets/styles/element-ui.scss @@ -1458,4 +1458,22 @@ .el-tag.el-tag--success{ font-weight: bold !important; color: #03a249 !important; +} +.el-calendar { + background-color: #637c94 !important; +} +.el-calendar-table td.is-selected .calendar-cell { + color: #409eff !important; + font-weight: bold; +} +.el-calendar-table .el-calendar-day:hover .calendar-cell { + color: #409eff !important; + font-weight: bold; +} +.el-calendar-table thead th { + color: #d8def3 !important; +} +.el-calendar__title{ + color: #ffffff !important; + font-weight: bold; } \ No newline at end of file diff --git a/src/views/centerairC/dateSwitch/index.vue b/src/views/centerairC/dateSwitch/index.vue new file mode 100644 index 0000000..7a181a6 --- /dev/null +++ b/src/views/centerairC/dateSwitch/index.vue @@ -0,0 +1,514 @@ + + + + + diff --git a/src/views/centerairC/equilibrium/index.vue b/src/views/centerairC/equilibrium/index.vue new file mode 100644 index 0000000..df22eeb --- /dev/null +++ b/src/views/centerairC/equilibrium/index.vue @@ -0,0 +1,1205 @@ + + + + + diff --git a/src/views/centerairC/sysMonitor/monitorCenter.vue b/src/views/centerairC/sysMonitor/monitorCenter.vue index f2115ea..f8e5267 100644 --- a/src/views/centerairC/sysMonitor/monitorCenter.vue +++ b/src/views/centerairC/sysMonitor/monitorCenter.vue @@ -113,6 +113,17 @@ {{ performanceObj.yearCold }} kw +
+ 热平衡率: + 82 + % +
+
+ 热平衡偏差: + 1.8 + % + 校验通过√ +
@@ -4138,12 +4149,18 @@ export default { font-family: DIN; font-size: 0.25rem; } + .normal { + font-size: 0.13rem; + color: #007bff; + font-weight: bold; + margin-left: 0.1rem; + } } .performance { position: absolute; - top: 6.1rem !important; - right: -0.6rem !important; + top: 5.4rem !important; + right: -1.2rem !important; display: flex; flex-direction: column; align-items: flex-start; @@ -4151,7 +4168,7 @@ export default { font-size: 0.16rem; } .perdformance-bg { - width: 2.85rem; + width: 2.95rem; z-index: 10; display: flex; flex-direction: column; diff --git a/src/views/components/aircAndWindcMeter.vue b/src/views/components/aircAndWindcMeter.vue index ed7c932..c8120f3 100644 --- a/src/views/components/aircAndWindcMeter.vue +++ b/src/views/components/aircAndWindcMeter.vue @@ -9,7 +9,7 @@ import * as echarts from "echarts"; export default { props: { subData: { - type: Array, + // type: Array, required: true, }, }, diff --git a/src/views/components/hotWater.vue b/src/views/components/hotWater.vue index 13c461d..e264f15 100644 --- a/src/views/components/hotWater.vue +++ b/src/views/components/hotWater.vue @@ -45,7 +45,7 @@ export default { props: { subData: { - type: Array, + // type: Array, required: true, }, }, diff --git a/src/views/components/sysEnergy.vue b/src/views/components/sysEnergy.vue new file mode 100644 index 0000000..7633f19 --- /dev/null +++ b/src/views/components/sysEnergy.vue @@ -0,0 +1,815 @@ + + + + + diff --git a/src/views/components/temMeter.vue b/src/views/components/temMeter.vue index 96d0fe0..d26ff46 100644 --- a/src/views/components/temMeter.vue +++ b/src/views/components/temMeter.vue @@ -9,7 +9,7 @@ import * as echarts from "echarts"; export default { props: { subData: { - type: Array, + // type: Array, required: true, }, }, diff --git a/src/views/components/viewColdSys.vue b/src/views/components/viewColdSys.vue index d38b60a..3bbdde5 100644 --- a/src/views/components/viewColdSys.vue +++ b/src/views/components/viewColdSys.vue @@ -11,7 +11,7 @@ import * as echarts from "echarts"; export default { props: { subData: { - type: Object, + // type: Object, required: true, }, title: "", @@ -86,7 +86,8 @@ export default { //初始化chartInstance2对象 折线图 initChart() { this.chartInstance = echarts.init(this.$refs.sys_charts); - var dataArr = this.subData.curValue; //值 + // var dataArr = this.subData.curValue; //值 + var dataArr = 8 var maxData = 10; //最大值 this.option = { // backgroundColor: "#0E1327", @@ -358,7 +359,8 @@ export default { echartsData() { if (this.subData.length > 0) { this.useForm.maxData = 10; - this.useForm.useData = this.subData[0].value; + // this.useForm.useData = this.subData[0].value; + this.useForm.useData = 8; let that = this; // 使用配置函数 const axisLineColor = this.getAxisLineColor( diff --git a/src/views/index.vue b/src/views/index.vue index 8832686..0f66f92 100644 --- a/src/views/index.vue +++ b/src/views/index.vue @@ -148,6 +148,12 @@ +
+
+
实时EER系数
+
+ +