Browse Source

1、冷源系统监测系统性能样式修改;

2、冷源系统控制添加阀门tab,其他tab排序;
dev
mh 2 weeks ago
parent
commit
12abf18552
  1. 51
      src/views/centerairC/sysControl/index.vue
  2. 6
      src/views/centerairC/sysMonitor/index.vue

51
src/views/centerairC/sysControl/index.vue

@ -24,15 +24,7 @@
</div> </div>
</div> </div>
<el-tabs v-model="activeName" @tab-click="handleClick"> <el-tabs v-model="activeName" @tab-click="handleClick">
<el-tab-pane label="主机" name="host"> <el-tab-pane label="阀门" name="valve">
<div class="device-container">
<list-header
:deviceList="hostList"
:isNoShowHz="true"
@operationControl="hadleOperationConrol"
@upList="getOperationList"
></list-header>
</div>
<div class="device-container"> <div class="device-container">
<vavleheader <vavleheader
:valveList="freezingValve" :valveList="freezingValve"
@ -45,16 +37,6 @@
@operationControl="hadleOperationConrol" @operationControl="hadleOperationConrol"
></vavleheader> ></vavleheader>
</div> </div>
</el-tab-pane>
<el-tab-pane label="冷却塔" name="coolingTowerFan">
<div class="device-container">
<list-header
:deviceList="coolingTowerFanList"
:isNoShowlocalRemote="true"
@operationControl="hadleOperationConrol"
@upList="getOperationList"
></list-header>
</div>
<div class="device-container"> <div class="device-container">
<vavleheader <vavleheader
:valveList="coolingTowerOutValve" :valveList="coolingTowerOutValve"
@ -71,6 +53,17 @@
></list-header> ></list-header>
</div> </div>
</el-tab-pane> </el-tab-pane>
<el-tab-pane label="冷却塔" name="coolingTowerFan">
<div class="device-container">
<list-header
:deviceList="coolingTowerFanList"
:isNoShowlocalRemote="true"
@operationControl="hadleOperationConrol"
@upList="getOperationList"
></list-header>
</div>
</el-tab-pane>
<el-tab-pane label="冷冻泵" name="freezingPump"> <el-tab-pane label="冷冻泵" name="freezingPump">
<div class="device-container"> <div class="device-container">
<list-header <list-header
@ -80,6 +73,16 @@
></list-header> ></list-header>
</div> </div>
</el-tab-pane> </el-tab-pane>
<el-tab-pane label="主机" name="host">
<div class="device-container">
<list-header
:deviceList="hostList"
:isNoShowHz="true"
@operationControl="hadleOperationConrol"
@upList="getOperationList"
></list-header>
</div>
</el-tab-pane>
</el-tabs> </el-tabs>
</div> </div>
</template> </template>
@ -104,22 +107,22 @@ export default {
freezingValve: [], // freezingValve: [], //
coolingValve: [], // coolingValve: [], //
coolingTowerOutValve: [], // coolingTowerOutValve: [], //
activeName: "host", // activeName: "valve", //
}; };
}, },
computed: { computed: {
statistics() { statistics() {
const deviceManual = this.deviceList.filter( const deviceManual = this.deviceList.filter(
(d) => d.automaticText === false (d) => d.automaticText === true
).length; ).length;
const deviceAuto = this.deviceList.filter( const deviceAuto = this.deviceList.filter(
(d) => d.automaticText === true (d) => d.automaticText === false
).length; ).length;
const valveManual = this.valveList.filter( const valveManual = this.valveList.filter(
(v) => v.automaticText === false (v) => v.automaticText === true
).length; ).length;
const valveAuto = this.valveList.filter( const valveAuto = this.valveList.filter(
(v) => v.automaticText === true (v) => v.automaticText === false
).length; ).length;
return { return {

6
src/views/centerairC/sysMonitor/index.vue

@ -36,7 +36,7 @@
</div> </div>
<!-- 系统性能数据 --> <!-- 系统性能数据 -->
<div class="performance"> <div class="performance">
<div class="title">系统性能</div> <div class="title"> </div>
<div class="perdformance-bg"> <div class="perdformance-bg">
<div class="weather-li"> <div class="weather-li">
<span>实时EER</span> <span>实时EER</span>
@ -2115,12 +2115,12 @@ export default {
background-size: 2rem 0.45rem; background-size: 2rem 0.45rem;
background-position: bottom left; background-position: bottom left;
font-family: SourceHanSansCN-Medium; font-family: SourceHanSansCN-Medium;
font-size: 0.18rem; font-size: 0.2rem;
font-style: italic; font-style: italic;
font-weight: bold; font-weight: bold;
line-height: 0.6rem; line-height: 0.6rem;
color: rgba(209, 214, 223, 1); color: rgba(209, 214, 223, 1);
padding-left: 0.6rem; padding-left: 0.5rem;
margin-bottom: 0.01rem; margin-bottom: 0.01rem;
margin-left: 0.4rem; margin-left: 0.4rem;
} }

Loading…
Cancel
Save