|
@@ -0,0 +1,797 @@
|
|
|
+<template>
|
|
|
+<div>
|
|
|
+ <div>
|
|
|
+ <el-input type="text" placeholder="请输入项目名称" v-model="projectName" style="width: 150px;"/>
|
|
|
+ <el-input type="text" placeholder="请输入盒子名称" v-model="boxName" style="width: 150px;margin-left: 5px"/>
|
|
|
+ <el-select v-model="online" placeholder="请选择在线状态" style="width: 150px;margin-left: 5px">
|
|
|
+ <el-option
|
|
|
+ v-for="item in onlineOptions"
|
|
|
+ :key="item.value"
|
|
|
+ :label="item.label"
|
|
|
+ :value="item.value">
|
|
|
+ </el-option>
|
|
|
+ </el-select>
|
|
|
+ <el-select v-model="mode" placeholder="请选择运行模式" style="width: 150px;margin-left: 5px">
|
|
|
+ <el-option
|
|
|
+ v-for="item in modeOptions"
|
|
|
+ :key="item.value"
|
|
|
+ :label="item.label"
|
|
|
+ :value="item.value">
|
|
|
+ </el-option>
|
|
|
+ </el-select>
|
|
|
+ <el-button style="width: 150px;margin-left: 5px" type="primary">搜 索</el-button>
|
|
|
+ </div>
|
|
|
+ <el-table :header-cell-style="{backgroundColor: '#fff'}"
|
|
|
+ :resizable="true"
|
|
|
+ class="el-table"
|
|
|
+ :data="tableData"
|
|
|
+ :cell-class-name="addClass"
|
|
|
+ row-key="id"
|
|
|
+ :cell-style="cellStylePadding0"
|
|
|
+ border
|
|
|
+ lazy
|
|
|
+ :tree-props="{children: 'children', hasChildren: 'hasChildren'}"
|
|
|
+ style="width: 100%;color:black;margin-top: 5px">
|
|
|
+ <el-table-column
|
|
|
+ label="序号"
|
|
|
+ width="50">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ (scope.$index+1)+(currentPage-1)*pageSize }}
|
|
|
+ </template>
|
|
|
+
|
|
|
+ </el-table-column>
|
|
|
+
|
|
|
+ <el-table-column
|
|
|
+ prop="prj_name"
|
|
|
+ label="项目名称"
|
|
|
+ width="120">
|
|
|
+ </el-table-column>
|
|
|
+
|
|
|
+ <el-table-column
|
|
|
+ prop="box_name"
|
|
|
+ label="盒子名称"
|
|
|
+ width="120">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="online_status"
|
|
|
+ label="在线状态" align="center"
|
|
|
+ width="120">
|
|
|
+
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div style="background:yellowgreen;color: black;text-align: center"
|
|
|
+ v-if="scope.row.online_status === '在线'">{{scope.row.online_status}}</div>
|
|
|
+ <div style="background:lightgrey;color: black;text-align: center"
|
|
|
+ v-else>{{scope.row.online_status}}</div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="running_mode"
|
|
|
+ label="运行模式" align="center"
|
|
|
+ width="100">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div style="background:darkgreen;color: black;text-align: center"
|
|
|
+ v-if="scope.row.running_mode === '制冷'">{{scope.row.running_mode}}</div>
|
|
|
+ <div style="background:orange;color: black;text-align: center"
|
|
|
+ v-if="scope.row.running_mode === '采暖'">{{scope.row.running_mode}}</div>
|
|
|
+ <div style="background:yellow;color: black;text-align: center"
|
|
|
+ v-if="scope.row.running_mode === '预热'">{{scope.row.running_mode}}</div>
|
|
|
+ <div style="background:#b6aee3;color: black;text-align: center"
|
|
|
+ v-if="scope.row.running_mode === '通风'">{{scope.row.running_mode}}</div>
|
|
|
+
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="主机控制器" align="center">
|
|
|
+ <el-table-column
|
|
|
+ prop="host_connect_status"
|
|
|
+ label="通讯状态" align="center"
|
|
|
+ width="120">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div style="background:yellowgreen;color: black;text-align: center;"
|
|
|
+ v-if="scope.row.host_connect_status === '正常'">{{scope.row.host_connect_status}}</div>
|
|
|
+ <div style="background:yellow;color: black;text-align: center;"
|
|
|
+ v-if="scope.row.host_connect_status === '异常'">{{scope.row.host_connect_status}}</div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="host_fault" align="center"
|
|
|
+ label="故障"
|
|
|
+ width="120">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div style="background:yellow;color: black;text-align: center;"
|
|
|
+ v-if="scope.row.host_fault === '有'">{{scope.row.host_fault}}</div>
|
|
|
+ <div style="background:yellowgreen;color: black;text-align: center;"
|
|
|
+ v-if="scope.row.host_fault === '无'">{{scope.row.host_fault}}</div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="host_su_temp" align="center"
|
|
|
+ label="供水水温(℃)"
|
|
|
+ width="120">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div style="background:yellow;color: black;text-align: center;"
|
|
|
+ v-if="scope.row.host_su_temp <30 &&(scope.row.running_mode==='采暖' || scope.row.running_mode==='预热')">{{scope.row.host_su_temp}}</div>
|
|
|
+
|
|
|
+ <div style="background:yellowgreen;color: black;text-align: center;"
|
|
|
+ v-else>{{scope.row.host_su_temp}}</div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="host_re_temp" align="center"
|
|
|
+ label="回水水温(℃)"
|
|
|
+ width="120">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div style="background:yellow;color: black;text-align: center;"
|
|
|
+ v-if="scope.row.host_re_temp <30 &&(scope.row.running_mode==='采暖' || scope.row.running_mode==='预热')">{{scope.row.host_re_temp}}</div>
|
|
|
+
|
|
|
+ <div style="background:yellowgreen;color: black;text-align: center;"
|
|
|
+ v-else>{{scope.row.host_re_temp}}</div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="host_temp_diff"
|
|
|
+ label="温差" align="center"
|
|
|
+ width="120">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div style="background:yellow;color: black;text-align: center;"
|
|
|
+ v-if="scope.row.host_temp_diff >5">{{scope.row.host_temp_diff}}</div>
|
|
|
+
|
|
|
+ <div style="background:yellowgreen;color: black;text-align: center;"
|
|
|
+ v-else>{{scope.row.host_temp_diff}}</div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="新风控制器">
|
|
|
+ <el-table-column
|
|
|
+ prop="nt_connect_status" align="center"
|
|
|
+ label="编号"
|
|
|
+ width="120">
|
|
|
+ <template >
|
|
|
+ <el-row><el-col>1</el-col></el-row>
|
|
|
+ <el-row><el-col>2</el-col></el-row>
|
|
|
+ <el-row><el-col>3</el-col></el-row>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="nt_connect_status" align="center"
|
|
|
+ label="通讯状态"
|
|
|
+ width="120">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-row><el-col><div style="background:yellowgreen;color: black;text-align: center;"
|
|
|
+ v-if="scope.row.nt_connect_status === '正常'">{{scope.row.nt_connect_status}}</div>
|
|
|
+ <div style="background:yellow;color: black;text-align: center;"
|
|
|
+ v-if="scope.row.nt_connect_status === '异常'">{{scope.row.nt_connect_status}}</div></el-col></el-row>
|
|
|
+ <el-row><el-col><div style="background:yellowgreen;color: black;text-align: center;"
|
|
|
+ v-if="scope.row.nt_connect_status === '正常'">{{scope.row.nt_connect_status}}</div>
|
|
|
+ <div style="background:yellow;color: black;text-align: center;"
|
|
|
+ v-if="scope.row.nt_connect_status === '异常'">{{scope.row.nt_connect_status}}</div></el-col></el-row>
|
|
|
+ <el-row><el-col><div style="background:yellowgreen;color: black;text-align: center;"
|
|
|
+ v-if="scope.row.nt_connect_status === '正常'">{{scope.row.nt_connect_status}}</div>
|
|
|
+ <div style="background:yellow;color: black;text-align: center;"
|
|
|
+ v-if="scope.row.nt_connect_status === '异常'">{{scope.row.nt_connect_status}}</div></el-col></el-row>
|
|
|
+
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="nt_fault" align="center"
|
|
|
+ label="故障"
|
|
|
+ width="120">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-row><el-col><div style="background:yellow;color: black;text-align: center;"
|
|
|
+ v-if="scope.row.nt_fault === '有'">{{scope.row.nt_fault}}</div>
|
|
|
+ <div style="background:yellowgreen;color: black;text-align: center;"
|
|
|
+ v-if="scope.row.nt_fault === '无'">{{scope.row.nt_fault}}</div></el-col></el-row>
|
|
|
+ <el-row><el-col><div style="background:yellow;color: black;text-align: center;"
|
|
|
+ v-if="scope.row.nt_fault === '有'">{{scope.row.nt_fault}}</div>
|
|
|
+ <div style="background:yellowgreen;color: black;text-align: center;"
|
|
|
+ v-if="scope.row.nt_fault === '无'">{{scope.row.nt_fault}}</div></el-col></el-row>
|
|
|
+ <el-row><el-col><div style="background:yellow;color: black;text-align: center;"
|
|
|
+ v-if="scope.row.nt_fault === '有'">{{scope.row.nt_fault}}</div>
|
|
|
+ <div style="background:yellowgreen;color: black;text-align: center;"
|
|
|
+ v-if="scope.row.nt_fault === '无'">{{scope.row.nt_fault}}</div></el-col></el-row>
|
|
|
+
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="nt_in_temp" align="center"
|
|
|
+ label="送风温度(℃)"
|
|
|
+ width="120">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-row><el-col><div style="background:yellow;color: black;text-align: center;"
|
|
|
+ v-if="scope.row.nt_in_temp <30 &&(scope.row.running_mode==='采暖' || scope.row.running_mode==='预热')">{{scope.row.nt_in_temp}}</div>
|
|
|
+
|
|
|
+ <div style="background:yellowgreen;color: black;text-align: center;"
|
|
|
+ v-else>{{scope.row.nt_in_temp}}</div></el-col></el-row>
|
|
|
+ <el-row><el-col><div style="background:yellow;color: black;text-align: center;"
|
|
|
+ v-if="scope.row.nt_in_temp <30 &&(scope.row.running_mode==='采暖' || scope.row.running_mode==='预热')">{{scope.row.nt_in_temp}}</div>
|
|
|
+
|
|
|
+ <div style="background:yellowgreen;color: black;text-align: center;"
|
|
|
+ v-else>{{scope.row.nt_in_temp}}</div></el-col></el-row>
|
|
|
+ <el-row><el-col><div style="background:yellow;color: black;text-align: center;"
|
|
|
+ v-if="scope.row.nt_in_temp <30 &&(scope.row.running_mode==='采暖' || scope.row.running_mode==='预热')">{{scope.row.nt_in_temp}}</div>
|
|
|
+
|
|
|
+ <div style="background:yellowgreen;color: black;text-align: center;"
|
|
|
+ v-else>{{scope.row.nt_in_temp}}</div></el-col></el-row>
|
|
|
+
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="nt_in_humidity" align="center"
|
|
|
+ label="送风湿度(%)"
|
|
|
+ width="120">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-row><el-col><div style="background:yellow;color: black;text-align: center;"
|
|
|
+ v-if="scope.row.nt_in_humidity <30 &&(scope.row.running_mode==='采暖' || scope.row.running_mode==='预热')">{{scope.row.nt_in_humidity}}</div>
|
|
|
+
|
|
|
+ <div style="background:yellowgreen;color: black;text-align: center;"
|
|
|
+ v-else>{{scope.row.nt_in_humidity}}</div></el-col></el-row>
|
|
|
+ <el-row><el-col><div style="background:yellow;color: black;text-align: center;"
|
|
|
+ v-if="scope.row.nt_in_humidity <30 &&(scope.row.running_mode==='采暖' || scope.row.running_mode==='预热')">{{scope.row.nt_in_humidity}}</div>
|
|
|
+
|
|
|
+ <div style="background:yellowgreen;color: black;text-align: center;"
|
|
|
+ v-else>{{scope.row.nt_in_humidity}}</div></el-col></el-row>
|
|
|
+ <el-row><el-col><div style="background:yellow;color: black;text-align: center;"
|
|
|
+ v-if="scope.row.nt_in_humidity <30 &&(scope.row.running_mode==='采暖' || scope.row.running_mode==='预热')">{{scope.row.nt_in_humidity}}</div>
|
|
|
+
|
|
|
+ <div style="background:yellowgreen;color: black;text-align: center;"
|
|
|
+ v-else>{{scope.row.nt_in_humidity}}</div></el-col></el-row>
|
|
|
+
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="nt_dew_point" align="center"
|
|
|
+ label="露点(℃)"
|
|
|
+ width="120">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-row><el-col><div style="text-align: center;">{{scope.row.nt_dew_point}}</div></el-col></el-row>
|
|
|
+ <el-row><el-col><div style="text-align: center;">{{scope.row.nt_dew_point}}</div></el-col></el-row>
|
|
|
+ <el-row><el-col><div style="text-align: center;">{{scope.row.nt_dew_point}}</div></el-col></el-row>
|
|
|
+
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table-column>
|
|
|
+
|
|
|
+ <el-table-column label="换热站控制器">
|
|
|
+ <el-table-column
|
|
|
+ prop="hex_connect_status"
|
|
|
+ label="通讯状态"
|
|
|
+ width="120">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="hex_fault"
|
|
|
+ label="故障"
|
|
|
+ width="120">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="hex_su_temp"
|
|
|
+ label="供水水温(℃)"
|
|
|
+ width="120">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="hex_re_temp"
|
|
|
+ label="回水水温(℃)"
|
|
|
+ width="120">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="hex_temp_diff"
|
|
|
+ label="温差(℃)"
|
|
|
+ width="120">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="hex_pump_status"
|
|
|
+ label="水泵状态"
|
|
|
+ width="120">
|
|
|
+ </el-table-column>
|
|
|
+ </el-table-column>
|
|
|
+
|
|
|
+ <el-table-column label="末端控制器">
|
|
|
+ <el-table-column
|
|
|
+ prop="end_exception_num"
|
|
|
+ label="通讯异常数量"
|
|
|
+ width="120">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="end_min_temp"
|
|
|
+ label="最低室内温度(℃)"
|
|
|
+ width="120">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="end_min_humidity"
|
|
|
+ label="最低室内湿度(%)"
|
|
|
+ width="120">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="end_min_dew_point"
|
|
|
+ label="最低室内露点(℃)"
|
|
|
+ width="120">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="end_max_temp"
|
|
|
+ label="最高室内温度(℃)"
|
|
|
+ width="120">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="end_max_humidity"
|
|
|
+ label="最高室内湿度(%)"
|
|
|
+ width="120">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="end_max_dew_point"
|
|
|
+ label="最高室内露点(℃)"
|
|
|
+ width="120">
|
|
|
+ </el-table-column>
|
|
|
+ </el-table-column>
|
|
|
+
|
|
|
+ </el-table>
|
|
|
+ <el-pagination
|
|
|
+ @size-change="handleSizeChange"
|
|
|
+ @current-change="handleCurrentChange"
|
|
|
+ :current-page="currentPage"
|
|
|
+ :page-sizes="[10, 20, 30, 40]"
|
|
|
+ :page-size="pageSize"
|
|
|
+ layout="total, sizes, prev, pager, next, jumper"
|
|
|
+ :total="total"
|
|
|
+ align="right"
|
|
|
+ >
|
|
|
+ </el-pagination>
|
|
|
+</div>
|
|
|
+
|
|
|
+
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+ export default {
|
|
|
+ methods:{
|
|
|
+ cellStylePadding0({ row, column, ronIndex, columnIndex }) {
|
|
|
+ if (
|
|
|
+ column.property == "nt_connect_status" ||
|
|
|
+ column.property == "branchLastTime" ||
|
|
|
+ column.property == "branchThisTime" ||
|
|
|
+ column.property == "branchAddReduceQty" ||
|
|
|
+ column.property == "branchAddReducePercent"
|
|
|
+ ) {
|
|
|
+ return "padding:0";
|
|
|
+ } else {
|
|
|
+ return "";
|
|
|
+ }
|
|
|
+ //console.log(column.property)
|
|
|
+ },
|
|
|
+ addClass({row,column,rowIndex,columnIndex}){
|
|
|
+ // console.log(columnIndex)
|
|
|
+ // console.log(row,column,rowIndex)
|
|
|
+ if(columnIndex === 3){
|
|
|
+ if(row.online_status == '在线'){
|
|
|
+ return 'cell-green';
|
|
|
+ }else if(row.online_status == '离线'){
|
|
|
+ return 'cell-grey';
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if(columnIndex === 4){
|
|
|
+ if(row.running_mode == '制冷'){
|
|
|
+ return 'cell-green';
|
|
|
+ }else if(row.running_mode == '采暖'){
|
|
|
+ return 'cell-grey';
|
|
|
+ }else if(row.running_mode == '预热'){
|
|
|
+ return 'cell-grey';
|
|
|
+ }else if(row.running_mode == '通风'){
|
|
|
+ return 'cell-grey';
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ handleSizeChange(val) {
|
|
|
+ this.pageSize = val;
|
|
|
+ this.queryData();
|
|
|
+ },
|
|
|
+ handleCurrentChange(val) {
|
|
|
+ this.currentPage = val;
|
|
|
+ this.queryData();
|
|
|
+ },
|
|
|
+ queryData() {
|
|
|
+ this.$http.get('/tableData', {
|
|
|
+ params: {
|
|
|
+ pageSize: this.pageSize,
|
|
|
+ currentPage: this.currentPage
|
|
|
+ }
|
|
|
+ }).then(res => {
|
|
|
+ this.tableData = res.data.data;
|
|
|
+ this.total = res.data.total;
|
|
|
+ })
|
|
|
+ }
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+
|
|
|
+ pageSize: 10,
|
|
|
+ currentPage: 1,
|
|
|
+ total: 0,
|
|
|
+ online: '',
|
|
|
+ onlineOptions: [
|
|
|
+ {
|
|
|
+ value: 'on',
|
|
|
+ label: '在线'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ value: 'off',
|
|
|
+ label: '离线'
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ mode: '',
|
|
|
+ modeOptions: [
|
|
|
+ {
|
|
|
+ value: 'shutdown',
|
|
|
+ label: '关机'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ value: 'cool',
|
|
|
+ label: '制冷'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ value: 'heat',
|
|
|
+ label: '采暖'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ value: 'dehumidify',
|
|
|
+ label: '除湿'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ value: 'ventilate',
|
|
|
+ label: '通风'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ value: 'preheat',
|
|
|
+ label: '预热'
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ tableData: [{
|
|
|
+ id:1,
|
|
|
+ prj_name: '铂睿思雨花展厅',
|
|
|
+ box_name: '铂睿思雨花展厅',
|
|
|
+ online_status: '在线',
|
|
|
+ running_mode: '制冷',
|
|
|
+ host_connect_status: '异常',
|
|
|
+ host_fault: '有',
|
|
|
+ host_su_temp: '20.0',
|
|
|
+ host_re_temp: '22.0',
|
|
|
+ host_temp_diff: '2.0',
|
|
|
+ nt_connect_status: '正常',
|
|
|
+ nt_fault: '有',
|
|
|
+ nt_in_temp: '20.0',
|
|
|
+ nt_in_humidity: '91.0',
|
|
|
+ nt_dew_point: '12.0',
|
|
|
+ hex_connect_status: '正常',
|
|
|
+ hex_fault: '无',
|
|
|
+ hex_su_temp: '20.0',
|
|
|
+ hex_re_temp: '22.0',
|
|
|
+ hex_temp_diff: '2.0',
|
|
|
+ hex_pump_status: '运行',
|
|
|
+ end_exception_num: '11',
|
|
|
+ end_min_temp: '11.0',
|
|
|
+ end_min_humidity: '56',
|
|
|
+ end_min_dew_point: '7.0',
|
|
|
+ end_max_temp: '29',
|
|
|
+ end_max_humidity: '87',
|
|
|
+ end_max_dew_point: '9.0',
|
|
|
+
|
|
|
+ },{
|
|
|
+ id:2,
|
|
|
+ prj_name: '北京中粮祥云',
|
|
|
+ box_name: '北京中粮祥云',
|
|
|
+ online_status: '离线',
|
|
|
+ running_mode: '采暖',
|
|
|
+ host_connect_status: '异常',
|
|
|
+ host_fault: '有',
|
|
|
+ host_su_temp: '20.0',
|
|
|
+ host_re_temp: '22.0',
|
|
|
+ host_temp_diff: '2.0',
|
|
|
+ nt_connect_status: '正常',
|
|
|
+ nt_fault: '有',
|
|
|
+ nt_in_temp: '20.0',
|
|
|
+ nt_in_humidity: '91.0',
|
|
|
+ nt_dew_point: '12.0',
|
|
|
+ hex_connect_status: '正常',
|
|
|
+ hex_fault: '无',
|
|
|
+ hex_su_temp: '20.0',
|
|
|
+ hex_re_temp: '22.0',
|
|
|
+ hex_temp_diff: '2.0',
|
|
|
+ hex_pump_status: '运行',
|
|
|
+ end_exception_num: '11',
|
|
|
+ end_min_temp: '11.0',
|
|
|
+ end_min_humidity: '56',
|
|
|
+ end_min_dew_point: '7.0',
|
|
|
+ end_max_temp: '29',
|
|
|
+ end_max_humidity: '87',
|
|
|
+ end_max_dew_point: '9.0'
|
|
|
+ },{
|
|
|
+ id:3,
|
|
|
+ prj_name: '天津温莎堡展厅',
|
|
|
+ box_name: '天津温莎堡展厅',
|
|
|
+ online_status: '在线',
|
|
|
+ running_mode: '预热',
|
|
|
+ host_connect_status: '正常',
|
|
|
+ host_fault: '有',
|
|
|
+ host_su_temp: '20.0',
|
|
|
+ host_re_temp: '22.0',
|
|
|
+ host_temp_diff: '2.0',
|
|
|
+ nt_connect_status: '正常',
|
|
|
+ nt_fault: '有',
|
|
|
+ nt_in_temp: '20.0',
|
|
|
+ nt_in_humidity: '91.0',
|
|
|
+ nt_dew_point: '12.0',
|
|
|
+ hex_connect_status: '正常',
|
|
|
+ hex_fault: '无',
|
|
|
+ hex_su_temp: '20.0',
|
|
|
+ hex_re_temp: '22.0',
|
|
|
+ hex_temp_diff: '2.0',
|
|
|
+ hex_pump_status: '运行',
|
|
|
+ end_exception_num: '11',
|
|
|
+ end_min_temp: '11.0',
|
|
|
+ end_min_humidity: '56',
|
|
|
+ end_min_dew_point: '7.0',
|
|
|
+ end_max_temp: '29',
|
|
|
+ end_max_humidity: '87',
|
|
|
+ end_max_dew_point: '9.0',
|
|
|
+ },{
|
|
|
+ id:4,
|
|
|
+ prj_name: '御江金城2-107',
|
|
|
+ box_name: '御江金城2-107',
|
|
|
+ online_status: '离线',
|
|
|
+ running_mode: '通风',
|
|
|
+ host_connect_status: '正常',
|
|
|
+ host_fault: '有',
|
|
|
+ host_su_temp: '20.0',
|
|
|
+ host_re_temp: '22.0',
|
|
|
+ host_temp_diff: '2.0',
|
|
|
+ nt_connect_status: '正常',
|
|
|
+ nt_fault: '有',
|
|
|
+ nt_in_temp: '20.0',
|
|
|
+ nt_in_humidity: '91.0',
|
|
|
+ nt_dew_point: '12.0',
|
|
|
+ hex_connect_status: '正常',
|
|
|
+ hex_fault: '无',
|
|
|
+ hex_su_temp: '20.0',
|
|
|
+ hex_re_temp: '22.0',
|
|
|
+ hex_temp_diff: '2.0',
|
|
|
+ hex_pump_status: '运行',
|
|
|
+ end_exception_num: '11',
|
|
|
+ end_min_temp: '11.0',
|
|
|
+ end_min_humidity: '56',
|
|
|
+ end_min_dew_point: '7.0',
|
|
|
+ end_max_temp: '29',
|
|
|
+ end_max_humidity: '87',
|
|
|
+ end_max_dew_point: '9.0'
|
|
|
+ },{
|
|
|
+ id:5,
|
|
|
+ prj_name: '国华印象15-102',
|
|
|
+ box_name: '国华印象15-102',
|
|
|
+ online_status: '在线',
|
|
|
+ running_mode: '制冷',
|
|
|
+ host_connect_status: '正常',
|
|
|
+ host_fault: '有',
|
|
|
+ host_su_temp: '20.0',
|
|
|
+ host_re_temp: '22.0',
|
|
|
+ host_temp_diff: '2.0',
|
|
|
+ nt_connect_status: '正常',
|
|
|
+ nt_fault: '有',
|
|
|
+ nt_in_temp: '20.0',
|
|
|
+ nt_in_humidity: '91.0',
|
|
|
+ nt_dew_point: '12.0',
|
|
|
+ hex_connect_status: '正常',
|
|
|
+ hex_fault: '无',
|
|
|
+ hex_su_temp: '20.0',
|
|
|
+ hex_re_temp: '22.0',
|
|
|
+ hex_temp_diff: '2.0',
|
|
|
+ hex_pump_status: '运行',
|
|
|
+ end_exception_num: '11',
|
|
|
+ end_min_temp: '11.0',
|
|
|
+ end_min_humidity: '56',
|
|
|
+ end_min_dew_point: '7.0',
|
|
|
+ end_max_temp: '29',
|
|
|
+ end_max_humidity: '87',
|
|
|
+ end_max_dew_point: '9.0'
|
|
|
+ },{
|
|
|
+ id:6,
|
|
|
+ prj_name: '无庶3-102',
|
|
|
+ box_name: '无庶3-102',
|
|
|
+ online_status: '离线',
|
|
|
+ running_mode: '制冷',
|
|
|
+ host_connect_status: '异常',
|
|
|
+ host_fault: '有',
|
|
|
+ host_su_temp: '20.0',
|
|
|
+ host_re_temp: '22.0',
|
|
|
+ host_temp_diff: '2.0',
|
|
|
+ nt_connect_status: '正常',
|
|
|
+ nt_fault: '有',
|
|
|
+ nt_in_temp: '20.0',
|
|
|
+ nt_in_humidity: '91.0',
|
|
|
+ nt_dew_point: '12.0',
|
|
|
+ hex_connect_status: '正常',
|
|
|
+ hex_fault: '无',
|
|
|
+ hex_su_temp: '20.0',
|
|
|
+ hex_re_temp: '22.0',
|
|
|
+ hex_temp_diff: '2.0',
|
|
|
+ hex_pump_status: '运行',
|
|
|
+ end_exception_num: '11',
|
|
|
+ end_min_temp: '11.0',
|
|
|
+ end_min_humidity: '56',
|
|
|
+ end_min_dew_point: '7.0',
|
|
|
+ end_max_temp: '29',
|
|
|
+ end_max_humidity: '87',
|
|
|
+ end_max_dew_point: '9.0'
|
|
|
+ },{
|
|
|
+ id:7,
|
|
|
+ prj_name: '揽江府1-14-6',
|
|
|
+ box_name: '揽江府1-14-6',
|
|
|
+ online_status: '在线',
|
|
|
+ running_mode: '制冷',
|
|
|
+ host_connect_status: '正常',
|
|
|
+ host_fault: '有',
|
|
|
+ host_su_temp: '20.0',
|
|
|
+ host_re_temp: '22.0',
|
|
|
+ host_temp_diff: '2.0',
|
|
|
+ nt_connect_status: '正常',
|
|
|
+ nt_fault: '有',
|
|
|
+ nt_in_temp: '20.0',
|
|
|
+ nt_in_humidity: '91.0',
|
|
|
+ nt_dew_point: '12.0',
|
|
|
+ hex_connect_status: '正常',
|
|
|
+ hex_fault: '无',
|
|
|
+ hex_su_temp: '20.0',
|
|
|
+ hex_re_temp: '22.0',
|
|
|
+ hex_temp_diff: '2.0',
|
|
|
+ hex_pump_status: '运行',
|
|
|
+ end_exception_num: '11',
|
|
|
+ end_min_temp: '11.0',
|
|
|
+ end_min_humidity: '56',
|
|
|
+ end_min_dew_point: '7.0',
|
|
|
+ end_max_temp: '29',
|
|
|
+ end_max_humidity: '87',
|
|
|
+ end_max_dew_point: '9.0'
|
|
|
+ },{
|
|
|
+ id:8,
|
|
|
+ prj_name: '颐和美地美嘉苑14-4',
|
|
|
+ box_name: '颐和美地美嘉苑14-4',
|
|
|
+ online_status: '在线',
|
|
|
+ running_mode: '制冷',
|
|
|
+ host_connect_status: '正常',
|
|
|
+ host_fault: '有',
|
|
|
+ host_su_temp: '20.0',
|
|
|
+ host_re_temp: '22.0',
|
|
|
+ host_temp_diff: '2.0',
|
|
|
+ nt_connect_status: '正常',
|
|
|
+ nt_fault: '有',
|
|
|
+ nt_in_temp: '20.0',
|
|
|
+ nt_in_humidity: '91.0',
|
|
|
+ nt_dew_point: '12.0',
|
|
|
+ hex_connect_status: '正常',
|
|
|
+ hex_fault: '无',
|
|
|
+ hex_su_temp: '20.0',
|
|
|
+ hex_re_temp: '22.0',
|
|
|
+ hex_temp_diff: '2.0',
|
|
|
+ hex_pump_status: '运行',
|
|
|
+ end_exception_num: '11',
|
|
|
+ end_min_temp: '11.0',
|
|
|
+ end_min_humidity: '56',
|
|
|
+ end_min_dew_point: '7.0',
|
|
|
+ end_max_temp: '29',
|
|
|
+ end_max_humidity: '87',
|
|
|
+ end_max_dew_point: '9.0'
|
|
|
+ },{
|
|
|
+ id:9,
|
|
|
+ prj_name: '九间堂75',
|
|
|
+ box_name: '九间堂75',
|
|
|
+ online_status: '离线',
|
|
|
+ running_mode: '制冷',
|
|
|
+ host_connect_status: '正常',
|
|
|
+ host_fault: '有',
|
|
|
+ host_su_temp: '20.0',
|
|
|
+ host_re_temp: '22.0',
|
|
|
+ host_temp_diff: '2.0',
|
|
|
+ nt_connect_status: '正常',
|
|
|
+ nt_fault: '有',
|
|
|
+ nt_in_temp: '20.0',
|
|
|
+ nt_in_humidity: '91.0',
|
|
|
+ nt_dew_point: '12.0',
|
|
|
+ hex_connect_status: '正常',
|
|
|
+ hex_fault: '无',
|
|
|
+ hex_su_temp: '20.0',
|
|
|
+ hex_re_temp: '22.0',
|
|
|
+ hex_temp_diff: '2.0',
|
|
|
+ hex_pump_status: '运行',
|
|
|
+ end_exception_num: '11',
|
|
|
+ end_min_temp: '11.0',
|
|
|
+ end_min_humidity: '56',
|
|
|
+ end_min_dew_point: '7.0',
|
|
|
+ end_max_temp: '29',
|
|
|
+ end_max_humidity: '87',
|
|
|
+ end_max_dew_point: '9.0'
|
|
|
+ },{
|
|
|
+ id:10,
|
|
|
+ prj_name: '涟城10-6',
|
|
|
+ box_name: '涟城10-6',
|
|
|
+ online_status: '在线',
|
|
|
+ running_mode: '制冷',
|
|
|
+ host_connect_status: '正常',
|
|
|
+ host_fault: '有',
|
|
|
+ host_su_temp: '20.0',
|
|
|
+ host_re_temp: '22.0',
|
|
|
+ host_temp_diff: '2.0',
|
|
|
+ nt_connect_status: '正常',
|
|
|
+ nt_fault: '有',
|
|
|
+ nt_in_temp: '20.0',
|
|
|
+ nt_in_humidity: '91.0',
|
|
|
+ nt_dew_point: '12.0',
|
|
|
+ hex_connect_status: '正常',
|
|
|
+ hex_fault: '无',
|
|
|
+ hex_su_temp: '20.0',
|
|
|
+ hex_re_temp: '22.0',
|
|
|
+ hex_temp_diff: '2.0',
|
|
|
+ hex_pump_status: '运行',
|
|
|
+ end_exception_num: '11',
|
|
|
+ end_min_temp: '11.0',
|
|
|
+ end_min_humidity: '56',
|
|
|
+ end_min_dew_point: '7.0',
|
|
|
+ end_max_temp: '29',
|
|
|
+ end_max_humidity: '87',
|
|
|
+ end_max_dew_point: '9.0'
|
|
|
+ }, ]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+</script>
|
|
|
+<style>
|
|
|
+ .textRadio >>> .el-radio__label {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+ .branchWrap {
|
|
|
+ margin: 0 -10px;
|
|
|
+ }
|
|
|
+ .branchWrap div {
|
|
|
+ padding: 0 10px;
|
|
|
+ border-bottom: 1px solid #dfe6ec;
|
|
|
+ }
|
|
|
+ .branchWrap div:last-child {
|
|
|
+ border: none;
|
|
|
+ }
|
|
|
+ .lineHeight28 {
|
|
|
+ line-height: 28px;
|
|
|
+ }
|
|
|
+ .cell-green{
|
|
|
+ /*background: #6ea33f;*/
|
|
|
+ }
|
|
|
+ .cell-grey{
|
|
|
+ /*background: #9fa09f;*/
|
|
|
+ }
|
|
|
+ /* el-table样式 */
|
|
|
+ .el-table {
|
|
|
+ font-size: 14px;
|
|
|
+ color: #606266;
|
|
|
+ background-color: #FFFFFF;
|
|
|
+ border: 1px solid #EBEBEB;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* el-table的表头样式 */
|
|
|
+ .el-table__header {
|
|
|
+ background-color: #F8F8F8;
|
|
|
+ color: #606266;
|
|
|
+ font-weight: bold;
|
|
|
+ border-bottom: 1px solid #EBEBEB;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* el-table的表格内容样式 */
|
|
|
+ .el-table__body {
|
|
|
+ background-color: #FFFFFF;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* el-table的表格行样式 */
|
|
|
+ .el-table__row {
|
|
|
+ background-color: #FFFFFF;
|
|
|
+ border-bottom: 1px solid #EBEBEB;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* el-table的表格单元格样式 */
|
|
|
+ .el-table__cell {
|
|
|
+ padding: 10px;
|
|
|
+ text-align: center;
|
|
|
+ color: #606266;
|
|
|
+ }
|
|
|
+
|
|
|
+</style>
|