283 lines
64 KiB
Vue
283 lines
64 KiB
Vue
<template>
|
||
<div class="project-distribution-box">
|
||
<el-row>
|
||
<el-col :span="18">
|
||
<module-one-1-3 label="配电箱监测">
|
||
<el-row>
|
||
<el-col :span="5">
|
||
<div class="process-control-current-value-con">
|
||
<div class="current-value-img">
|
||
<img src="images/hj_wendu.png">
|
||
</div>
|
||
<div class="process-control-current-value-data">
|
||
<div>A相温度</div>
|
||
<p v-cloak>{{ powerRun.t1 }} <span>℃</span></p>
|
||
</div>
|
||
</div>
|
||
</el-col>
|
||
<el-col :span="5">
|
||
<div class="process-control-current-value-con">
|
||
<div class="current-value-img">
|
||
<img src="images/hj_wendu.png">
|
||
</div>
|
||
<div class="process-control-current-value-data">
|
||
<div>B相温度</div>
|
||
<p v-cloak>{{ powerRun.t2 }} <span>℃</span></p>
|
||
</div>
|
||
</div>
|
||
</el-col>
|
||
<el-col :span="5">
|
||
<div class="process-control-current-value-con">
|
||
<div class="current-value-img">
|
||
<img src="images/hj_wendu.png">
|
||
</div>
|
||
<div class="process-control-current-value-data">
|
||
<div>C相温度</div>
|
||
<p v-cloak>{{ powerRun.t3 }} <span>℃</span></p>
|
||
</div>
|
||
</div>
|
||
</el-col>
|
||
<el-col :span="5">
|
||
<div class="process-control-current-value-con">
|
||
<div class="current-value-img">
|
||
<img src="images/huanjingweidu.png">
|
||
</div>
|
||
<div class="process-control-current-value-data">
|
||
<div>零线温度</div>
|
||
<p v-cloak>{{ powerRun.t4 }} <span>℃</span></p>
|
||
</div>
|
||
</div>
|
||
</el-col>
|
||
<el-col :span="4">
|
||
<div class="process-control-current-value-con">
|
||
<div class="process-control-current-value-data">
|
||
<div>温度阈值</div>
|
||
<p class="red-data">70 <span>℃</span></p>
|
||
</div>
|
||
</div>
|
||
</el-col>
|
||
<el-col :span="5">
|
||
<div class="process-control-current-value-con">
|
||
<div class="current-value-img">
|
||
<img src="images/hj_dianliu.png">
|
||
</div>
|
||
<div class="process-control-current-value-data">
|
||
<div>A相电流</div>
|
||
<p v-cloak>{{ powerRun.c1 }} <span>A</span></p>
|
||
</div>
|
||
</div>
|
||
</el-col>
|
||
<el-col :span="5">
|
||
<div class="process-control-current-value-con">
|
||
<div class="current-value-img">
|
||
<img src="images/hj_dianliu.png">
|
||
</div>
|
||
<div class="process-control-current-value-data">
|
||
<div>B相电流</div>
|
||
<p v-cloak>{{ powerRun.c2 }} <span>A</span></p>
|
||
</div>
|
||
</div>
|
||
</el-col>
|
||
<el-col :span="5">
|
||
<div class="process-control-current-value-con">
|
||
<div class="current-value-img">
|
||
<img src="images/hj_dianliu.png">
|
||
</div>
|
||
<div class="process-control-current-value-data">
|
||
<div>C相电流</div>
|
||
<p v-cloak>{{ powerRun.c3 }} <span>A</span></p>
|
||
</div>
|
||
</div>
|
||
</el-col>
|
||
</el-row>
|
||
</module-one-1-3>
|
||
<module-one-1-3 label="温度监控">
|
||
<div class="sjk-chart-line-title quality-button">
|
||
<div :class="trendBtnNav == 1 ? 'active' : ''" @click="onClickTemperatureTrend(1)">近7天</div>
|
||
<div :class="trendBtnNav == 2 ? 'active' : ''" @click="onClickTemperatureTrend(2)">近30天</div>
|
||
</div>
|
||
<trend-chart-line :height="220" :data="temperatureTrendData"></trend-chart-line>
|
||
</module-one-1-3>
|
||
<module-one-1-3 label="电流监控">
|
||
<div class="sjk-chart-line-title quality-button">
|
||
<div :class="tumidityBtnNav == 1 ? 'active' : ''" @click="onClickTumidityTrend(1)">近7天</div>
|
||
<div :class="tumidityBtnNav == 2 ? 'active' : ''" @click="onClickTumidityTrend(2)">近30天</div>
|
||
</div>
|
||
<trend-chart-line :height="220" :data="tumidityTrendData"></trend-chart-line>
|
||
</module-one-1-3>
|
||
</el-col>
|
||
<el-col :span="6">
|
||
<div class="analyse-max">
|
||
<div class="analyse-map">
|
||
<div class="analyse-title analyse_title_blue">
|
||
<div class="analyse-text">当前设备</div>
|
||
<div class="analyse-equipment">配电箱监测</div>
|
||
</div>
|
||
<div class="hj-moment-max">
|
||
<table>
|
||
<tr>
|
||
<td>设备名称:</td>
|
||
<td>
|
||
<div class="hj-moment-choice">
|
||
<div class="hj-moment-select">
|
||
<screen-select ref="sel1" :data="selectData" @option="clickOptionList"></screen-select>
|
||
</div>
|
||
<div class="hj-moment-state">
|
||
<div class="state-tag state-zx" v-if="online">在线</div>
|
||
<div class="state-tag state-lx" v-else>离线</div>
|
||
</div>
|
||
</div>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td>名称:</td>
|
||
<td>
|
||
<div class="hj-moment-blue" v-cloak>{{ lastChooseDevice.deviceId }}</div>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td>安装位置:</td>
|
||
<td>办公区</td>
|
||
</tr>
|
||
<tr>
|
||
<td>设备状态:</td>
|
||
<td>
|
||
<div class="hj-moment-green" v-if="deviceStatus">无警告/在线</div>
|
||
<div class="hj-moment-orange" v-if="!deviceStatus">离线</div>
|
||
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td>设备编码:</td>
|
||
<td v-cloak>{{ lastChooseDevice.deviceId }}</td>
|
||
</tr>
|
||
<tr>
|
||
<td>更新时间:</td>
|
||
<td v-cloak>{{ powerRun.time }}</td>
|
||
</tr>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
<div class="analyse-min">
|
||
<div class="analyse-title">
|
||
<div class="analyse-text">正在发生</div>
|
||
</div>
|
||
<div class="afoot-content">
|
||
<div class="afoot-overflow process-afoot-overflow" style="height: 530px;" id="afootOverflow"
|
||
@mouseout="listMinMouseout" @mouseover="listMinMouseover">
|
||
<div v-if="warningData.length == 0" class="not-data">暂无预警数据</div>
|
||
<div v-if="warningData.length > 0" :class="forIndex == i ? 'afoot-con-for active' : 'afoot-con-for '"
|
||
v-for="(item, i) in warningData">
|
||
<div class="afoot-machinery-nam" v-cloak>{{ item.type }}</div>
|
||
<div class="afoot-machinery-info">
|
||
<div class="afoot-machinery-img">
|
||
<img :src="item.images" v-if="item.images">
|
||
</div>
|
||
<div class="afoot-machinery-data">
|
||
<div class="afoot-machinery-state" v-cloak>{{ item.content }}</div>
|
||
<div class="afoot-machinery-time" v-cloak>{{ item.time }}</div>
|
||
</div>
|
||
</div>
|
||
<div class="afoot-machinery-project">异常传感器:<span class="hj-moment-orange" v-cloak>传感器-{{
|
||
item.deviceId }}</span>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
</el-col>
|
||
|
||
</el-row>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import '@/components/module/module-one-1-3'
|
||
import '@/components/trend-chart-line'
|
||
import '@/components/screen-select'
|
||
export default {
|
||
//配电箱
|
||
name: 'JhbigscreenDistributionBox',
|
||
|
||
data() {
|
||
return {
|
||
powerRun: {},
|
||
trendBtnNav: 1,
|
||
temperatureTrendData: {},
|
||
tumidityBtnNav: 1,
|
||
tumidityTrendData: {},
|
||
selectData: [],
|
||
lastChooseDevice: {
|
||
deviceId: ''
|
||
},
|
||
deviceStatus: false,
|
||
warningData: [],
|
||
forIndex: 0,
|
||
online:true,
|
||
warningInterval: undefined,
|
||
};
|
||
},
|
||
|
||
mounted() {
|
||
//正在发生 定时器
|
||
this.warningInterval = setInterval(this.automaticRoll, 5000);
|
||
this.powerRun = JSON.parse('{"searchValue":null,"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"params":{},"id":488906,"uid":"PWR.02731XTJ","deviceName":null,"uids":[],"time":"2024-03-10 00:13:44","date":null,"c1":15.5,"c2":1.4,"c3":4.1,"v1":0,"v2":0,"v3":0,"t1":7,"t2":7,"t3":7,"t4":6,"leak":0,"power":0,"startTime":null,"endTime":null,"projectId":null,"projectName":null}');
|
||
this.selectData = JSON.parse('[{"searchValue":null,"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"params":{},"id":"PWR.02731XTJ","deviceId":"配电箱监测设备 PWR.02731XTJ","deviceName":"配电箱","state":1,"projectId":132,"points":1,"typeName":"配电箱","hzTenantId":"1390137257721987073","hzProjectId":"1634117283072266241","text":"PWR.02731XTJ"}]');
|
||
this.lastChooseDevice = this.selectData[0];
|
||
this.warningData=[{type:"预警A",images:['images/831.jpg'],deviceId:'PWR.02731XTJ',content:'告警内容',time:'24-02-02 14:00',project_abbreviation:'xxx项目'},{type:"预警A",images:['images/831.jpg'],deviceId:'PWR.02731XTJ',content:'告警内容',time:'24-02-02 14:00',project_abbreviation:'xxx项目'},{type:"预警A",images:['images/831.jpg'],deviceId:'PWR.02731XTJ',content:'告警内容',time:'24-02-02 14:00',project_abbreviation:'xxx项目'},]
|
||
this.onClickTemperatureTrend(1);
|
||
this.onClickTumidityTrend(1);
|
||
this.$nextTick(()=>{
|
||
this.$refs.sel1.value=this.lastChooseDevice.deviceId;
|
||
});
|
||
},
|
||
|
||
methods: {
|
||
//温度趋势
|
||
onClickTemperatureTrend(n) {
|
||
this.trendBtnNav = n;
|
||
if (n == 1) {
|
||
this.temperatureTrendData = JSON.parse('{"lineData":[[6,7,6,6,6,7,7,6,7,9,9,9,9,10,10,9,10,9,8,9,10,11,10,10,8,7,7,7,7,7,6,7,6,6,6,5,5,6,9,10,10,10,11,11,12,12,13,11,9,8,8,7,6,5,5,5,5,5,5,5,5,6,9,12,11,11,12,12,13,13,13,13,11,9,7,6,5,5,4,3,3,2,2,1,1,4,7,7,8,8,9,10,11,13,12,11,11,9,9,9,8,7,6,6,6,6,5,4,4,6,8,10,12,12,13,14,14,15,15,15,12,11,9,8,8,7],[6,6,6,6,5,6,6,6,6,7,8,8,8,9,9,7,8,8,8,8,9,10,10,9,8,7,7,6,6,6,6,6,6,6,5,5,4,5,7,9,10,10,10,11,11,12,12,11,9,8,7,6,6,5,4,4,4,4,5,5,4,5,8,10,10,10,11,11,12,12,12,12,10,8,7,5,5,4,4,3,2,2,1,1,1,2,5,7,8,9,9,10,11,12,12,11,10,9,8,8,7,6,6,6,6,5,5,4,3,4,7,9,11,12,12,13,13,14,15,14,12,10,8,8,7,7],[5,6,5,5,5,6,6,6,7,8,9,9,9,9,9,9,10,9,8,8,9,11,10,10,8,7,7,6,6,6,6,6,6,6,5,5,4,6,8,11,11,11,11,11,12,12,13,12,9,9,7,7,6,5,4,4,5,4,5,5,4,5,8,11,10,11,11,11,12,13,13,12,11,9,7,5,5,4,4,3,2,2,1,1,1,4,6,8,8,9,9,10,11,12,12,11,10,8,8,8,7,6,6,5,5,5,4,4,3,5,7,9,11,12,12,13,14,14,15,15,12,10,8,8,7,7],[5,6,5,5,5,6,6,5,6,7,7,8,8,8,8,7,8,8,7,8,8,9,9,9,7,7,6,6,6,6,6,6,5,5,5,5,4,5,7,9,9,10,10,10,11,11,12,11,9,8,7,6,5,4,4,4,4,4,4,4,4,5,7,10,9,10,11,11,11,12,12,11,10,8,6,5,4,4,3,2,2,2,1,1,0,2,5,6,7,8,8,9,10,11,11,10,9,8,8,7,7,6,6,5,5,5,4,3,3,4,7,8,9,11,11,12,13,14,14,14,11,9,8,7,7,6],[70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70]],"color":["#008ffd","#f6d023","#5af9fd","#fc6902"],"legend":["A相温度","B相温度","C相温度","零线温度","温度阈值"],"unit":"℃","date":["2024-03-04 00:00","2024-03-04 01:00","2024-03-04 02:00","2024-03-04 03:00","2024-03-04 04:00","2024-03-04 05:00","2024-03-04 06:00","2024-03-04 07:00","2024-03-04 08:00","2024-03-04 09:00","2024-03-04 10:00","2024-03-04 11:00","2024-03-04 12:00","2024-03-04 13:00","2024-03-04 14:00","2024-03-05 10:00","2024-03-05 11:00","2024-03-05 12:00","2024-03-05 13:00","2024-03-05 14:00","2024-03-05 15:00","2024-03-05 16:00","2024-03-05 17:00","2024-03-05 18:00","2024-03-05 19:00","2024-03-05 20:00","2024-03-05 21:00","2024-03-05 22:00","2024-03-05 23:00","2024-03-06 00:00","2024-03-06 01:00","2024-03-06 02:00","2024-03-06 03:00","2024-03-06 04:00","2024-03-06 05:00","2024-03-06 06:00","2024-03-06 07:00","2024-03-06 08:00","2024-03-06 09:00","2024-03-06 10:00","2024-03-06 11:00","2024-03-06 12:00","2024-03-06 13:00","2024-03-06 14:00","2024-03-06 15:00","2024-03-06 16:00","2024-03-06 17:00","2024-03-06 18:00","2024-03-06 19:00","2024-03-06 20:00","2024-03-06 21:00","2024-03-06 22:00","2024-03-06 23:00","2024-03-07 00:00","2024-03-07 01:00","2024-03-07 02:00","2024-03-07 03:00","2024-03-07 04:00","2024-03-07 05:00","2024-03-07 06:00","2024-03-07 07:00","2024-03-07 08:00","2024-03-07 09:00","2024-03-07 10:00","2024-03-07 11:00","2024-03-07 12:00","2024-03-07 13:00","2024-03-07 14:00","2024-03-07 15:00","2024-03-07 16:00","2024-03-07 17:00","2024-03-07 18:00","2024-03-07 19:00","2024-03-07 20:00","2024-03-07 21:00","2024-03-07 22:00","2024-03-07 23:00","2024-03-08 00:00","2024-03-08 01:00","2024-03-08 02:00","2024-03-08 03:00","2024-03-08 04:00","2024-03-08 05:00","2024-03-08 06:00","2024-03-08 07:00","2024-03-08 08:00","2024-03-08 09:00","2024-03-08 10:00","2024-03-08 11:00","2024-03-08 12:00","2024-03-08 13:00","2024-03-08 14:00","2024-03-08 15:00","2024-03-08 16:00","2024-03-08 17:00","2024-03-08 18:00","2024-03-08 19:00","2024-03-08 20:00","2024-03-08 21:00","2024-03-08 22:00","2024-03-08 23:00","2024-03-09 00:00","2024-03-09 01:00","2024-03-09 02:00","2024-03-09 03:00","2024-03-09 04:00","2024-03-09 05:00","2024-03-09 06:00","2024-03-09 07:00","2024-03-09 08:00","2024-03-09 09:00","2024-03-09 10:00","2024-03-09 11:00","2024-03-09 12:00","2024-03-09 13:00","2024-03-09 14:00","2024-03-09 15:00","2024-03-09 16:00","2024-03-09 17:00","2024-03-09 18:00","2024-03-09 19:00","2024-03-09 20:00","2024-03-09 21:00","2024-03-09 22:00","2024-03-09 23:00","2024-03-10 00:00"]}');
|
||
} else {
|
||
this.temperatureTrendData = JSON.parse('{"lineData":[[2,1,2,2,3,2,1,1,1,3,6,8,9,11,12,13,13,13,11,9,7,5,4,4,3,2,1,1,0,0,0,0,0,0,3,4,6,7,7,8,9,10,9,7,5,4,3,3,3,2,1,1,1,1,1,1,0,2,4,6,8,9,10,11,12,12,10,8,7,6,5,4,4,3,3,2,2,2,1,1,1,3,5,8,10,11,12,13,13,14,12,9,8,7,7,6,6,5,5,5,5,5,6,6,7,7,9,10,10,10,10,10,9,7,4,4,3,4,3,3,2,2,2,2,3,3,3,2,2,3,5,6,8,8,9,9,10,10,9,7,6,5,4,4,3,2,2,1,0,0,0,0,0,2,4,5,6,8,8,9,10,10,9,8,6,5,5,4,4,3,2,2,1,1,1,1,1,3,6,7,9,10,10,11,12,12,11,9,8,7,6,6,5,5,4,4,4,4,4,5,5,6,8,8,9,8,8,8,8,8,7,7,6,6,6,6,5,5,5,5,4,4,4,4,6,7,8,7,7,6,6,6,5,5,5,4,3,3,3,3,2,2,2,1,1,0,0,0,3,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,2,4,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,2,2,3,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,2,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,3,3,3,4,4,4,4,3,1,0,0,0,0,0,0,0,0,0,0,0,0,1,5,5,5,5,6,7,6,6,6,5,4,3,2,2,2,2,1,1,1,1,1,1,1,3,8,7,7,6,6,9,8,9,8,7,5,5,4,3,3,3,2,2,0,0,0,0,1,3,6,6,6,6,6,7,8,8,7,7,6,6,5,5,5,4,4,4,4,4,4,4,4,5,6,6,7,8,8,8,9,10,9,8,7,7,5,4,4,4,3,3,3,3,3,3,2,3,4,6,5,4,5,6,6,7,7,5,4,2,2,2,2,2,2,2,2,2,1,1,1,4,6,8,7,5,6,6,7,6,5,5,3,2,2,2,1,0,0,0,0,0,0,0,0,1,8,8,8,8,8,8,8,9,10,9,7,5,4,3,3,2,2,1,1,0,0,0,0,1,3,6,7,7,8,9,9,10,10,9,9,8,7,7,7,6,7,6,6,6,7,7,6,7,9,9,9,9,10,10,9,10,9,8,9,10,11,10,10,8,7,7,7,7,7,6,7,6,6,6,5,5,6,9,10,10,10,11,11,12,12,13,11,9,8,8,7,6,5,5,5,5,5,5,5,5,6,9,12,11,11,12,12,13,13,13,13,11,9,7,6,5,5,4,3,3,2,2,1,1,4,7,7,8,8,9,10,11,13,12,11,11,9,9,9,8,7,6,6,6,6,5,4,4,6,8,10,12,12,13,14,14,15,15,15,12,11,9,8,8,7],[1,1,1,2,2,1,1,1,0,2,5,7,8,10,12,12,12,12,11,8,6,5,4,3,2,1,1,0,0,0,0,0,0,0,3,4,5,6,7,8,9,9,8,6,5,4,3,2,2,2,1,1,0,0,0,0,0,1,4,6,8,9,10,11,11,11,10,8,6,5,5,4,3,3,2,2,2,1,1,0,0,2,5,7,9,11,11,12,13,13,11,9,8,7,6,6,5,5,4,4,4,5,5,5,5,6,8,9,10,10,9,10,8,6,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,5,6,7,8,8,9,9,9,9,7,5,4,4,3,3,2,1,0,0,0,0,0,0,1,4,5,6,7,8,9,9,10,9,7,6,5,4,4,3,3,2,1,1,1,0,0,0,3,5,7,8,9,10,11,11,12,11,9,8,7,6,5,5,4,4,4,4,4,3,4,5,6,7,8,8,8,8,8,8,8,7,6,6,6,5,5,5,5,4,4,4,4,3,4,5,6,6,6,6,5,5,5,5,4,4,3,2,2,2,2,2,1,1,1,0,0,0,0,1,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,3,3,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,4,5,6,5,6,5,4,3,3,2,2,1,1,1,1,1,1,1,1,0,2,3,4,4,5,5,6,7,7,6,6,4,4,3,3,2,2,2,1,0,0,0,0,0,2,4,4,5,5,6,6,8,8,7,7,6,6,5,5,5,4,4,4,4,4,4,4,4,5,5,5,6,7,7,7,9,9,8,7,6,6,5,4,3,3,3,3,2,2,2,2,2,3,3,3,3,4,4,5,6,6,6,5,3,2,1,1,1,1,1,1,1,1,1,1,1,3,4,4,4,5,5,6,6,6,4,4,2,2,1,1,0,0,0,0,0,0,0,0,0,0,4,6,6,6,7,7,8,8,9,9,6,5,4,3,2,2,1,1,1,0,0,0,0,1,2,4,6,6,7,8,9,9,10,9,8,7,7,6,6,6,6,6,6,5,6,6,6,6,7,8,8,8,9,9,7,8,8,8,8,9,10,10,9,8,7,7,6,6,6,6,6,6,6,5,5,4,5,7,9,10,10,10,11,11,12,12,11,9,8,7,6,6,5,4,4,4,4,5,5,4,5,8,10,10,10,11,11,12,12,12,12,10,8,7,5,5,4,4,3,2,2,1,1,1,2,5,7,8,9,9,10,11,12,12,11,10,9,8,8,7,6,6,6,6,5,5,4,3,4,7,9,11,12,12,13,13,14,15,14,12,10,8,8,7,7],[1,1,1,2,2,1,1,1,0,2,5,7,8,10,12,12,12,12,11,8,6,5,4,3,2,1,1,0,0,0,0,0,0,0,3,4,5,6,6,8,8,9,8,6,5,4,3,2,2,1,1,1,0,0,0,0,0,1,4,6,7,9,10,11,11,11,10,8,6,5,5,4,3,3,2,2,1,1,1,1,0,2,5,8,9,11,11,12,13,13,11,9,8,7,6,6,5,5,4,4,4,5,5,5,5,6,8,9,10,10,10,10,9,6,4,3,3,3,2,2,2,2,2,2,2,2,2,1,2,2,5,6,8,8,8,9,9,9,9,6,5,4,4,3,3,2,1,0,0,0,0,0,0,1,4,5,6,7,8,8,9,10,9,7,6,5,4,3,3,3,2,1,1,0,0,0,0,2,5,7,8,9,9,10,11,11,11,9,7,7,6,5,5,4,4,3,4,3,3,4,5,6,8,9,8,8,8,8,7,7,7,6,6,6,5,5,5,4,4,4,4,4,3,3,4,7,7,6,6,7,6,5,5,5,5,3,2,2,2,2,2,1,1,1,0,0,0,0,2,4,4,4,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,2,4,2,1,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,3,3,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,5,5,7,6,6,6,5,5,3,2,2,1,1,1,1,1,1,1,1,0,0,3,6,7,7,7,5,6,7,7,7,6,6,5,3,3,2,2,1,1,0,0,0,0,0,3,6,8,7,7,7,7,8,8,8,7,7,6,6,5,5,4,4,4,4,3,4,4,4,7,8,7,7,7,7,7,8,9,9,8,7,6,6,4,3,3,3,3,2,2,2,2,2,3,4,6,6,6,6,7,7,7,7,5,3,2,1,1,1,2,1,1,1,1,1,1,1,3,4,5,5,6,6,6,7,6,5,4,2,1,1,1,0,0,0,0,0,0,0,0,0,0,7,7,7,6,7,7,8,9,9,9,6,4,4,3,2,2,2,1,1,0,0,0,0,0,2,4,6,7,7,8,9,9,10,9,8,7,7,6,6,5,6,5,5,5,6,6,6,7,8,9,9,9,9,9,9,10,9,8,8,9,11,10,10,8,7,7,6,6,6,6,6,6,6,5,5,4,6,8,11,11,11,11,11,12,12,13,12,9,9,7,7,6,5,4,4,5,4,5,5,4,5,8,11,10,11,11,11,12,13,13,12,11,9,7,5,5,4,4,3,2,2,1,1,1,4,6,8,8,9,9,10,11,12,12,11,10,8,8,8,7,6,6,5,5,5,4,4,3,5,7,9,11,12,12,13,14,14,15,15,12,10,8,8,7,7],[1,1,1,2,2,1,1,1,0,3,5,7,8,9,12,12,12,12,10,7,6,4,3,3,2,1,1,0,0,0,0,0,0,0,2,3,5,6,6,7,8,8,7,5,4,3,3,2,2,1,1,0,0,0,0,0,0,1,3,5,7,8,9,10,10,11,9,7,6,5,4,3,3,2,2,1,1,1,1,0,0,2,5,7,9,10,11,11,12,12,10,8,7,6,6,5,5,4,4,4,4,5,5,5,5,6,8,9,10,9,9,9,8,6,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,2,5,6,7,7,8,8,8,9,8,6,5,4,3,3,2,1,1,0,0,0,0,0,0,1,3,5,5,7,7,8,9,9,8,6,5,4,4,3,3,2,2,1,1,0,0,0,0,2,5,6,8,8,9,10,11,11,10,8,7,6,6,5,4,4,4,3,4,3,3,4,5,6,8,8,8,8,8,7,7,7,6,6,6,5,5,5,4,4,4,4,3,3,3,3,4,5,5,4,5,5,4,4,4,4,3,3,2,2,2,2,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,3,4,5,4,4,4,4,3,2,1,1,1,1,1,1,1,0,0,0,0,1,5,5,4,5,4,7,5,6,5,5,5,4,3,2,2,2,1,0,0,0,0,0,0,0,2,4,4,4,6,6,7,7,7,6,6,6,5,5,4,4,4,4,3,3,4,3,4,5,5,5,5,6,6,6,7,8,7,6,6,5,5,4,3,3,3,2,2,2,2,2,1,2,2,5,4,4,4,6,5,6,5,4,3,1,1,1,1,1,1,1,1,1,1,1,1,2,3,5,4,4,4,5,6,5,4,3,2,1,1,1,0,0,0,0,0,0,0,0,0,0,4,5,5,5,6,7,7,8,9,8,5,4,3,2,2,2,1,1,0,0,0,0,0,0,1,4,5,5,7,7,8,9,9,8,8,7,6,6,6,5,6,5,5,5,6,6,5,6,7,7,8,8,8,8,7,8,8,7,8,8,9,9,9,7,7,6,6,6,6,6,6,5,5,5,5,4,5,7,9,9,10,10,10,11,11,12,11,9,8,7,6,5,4,4,4,4,4,4,4,4,5,7,10,9,10,11,11,11,12,12,11,10,8,6,5,4,4,3,2,2,2,1,1,0,2,5,6,7,8,8,9,10,11,11,10,9,8,8,7,7,6,6,5,5,5,4,3,3,4,7,8,9,11,11,12,13,14,14,14,11,9,8,7,7,6],[70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70,70]],"color":["#008ffd","#f6d023","#5af9fd","#fc6902"],"legend":["A相温度","B相温度","C相温度","零线温度","温度阈值"],"unit":"℃","date":["2024-02-10 00:00","2024-02-10 01:00","2024-02-10 02:00","2024-02-10 03:00","2024-02-10 04:00","2024-02-10 05:00","2024-02-10 06:00","2024-02-10 07:00","2024-02-10 08:00","2024-02-10 09:00","2024-02-10 10:00","2024-02-10 11:00","2024-02-10 12:00","2024-02-10 13:00","2024-02-10 14:00","2024-02-10 15:00","2024-02-10 16:00","2024-02-10 17:00","2024-02-10 18:00","2024-02-10 19:00","2024-02-10 20:00","2024-02-10 21:00","2024-02-10 22:00","2024-02-10 23:00","2024-02-11 00:00","2024-02-11 01:00","2024-02-11 02:00","2024-02-11 03:00","2024-02-11 04:00","2024-02-11 05:00","2024-02-11 06:00","2024-02-11 07:00","2024-02-11 08:00","2024-02-11 09:00","2024-02-11 10:00","2024-02-11 11:00","2024-02-11 12:00","2024-02-11 13:00","2024-02-11 14:00","2024-02-11 15:00","2024-02-11 16:00","2024-02-11 17:00","2024-02-11 18:00","2024-02-11 19:00","2024-02-11 20:00","2024-02-11 21:00","2024-02-11 22:00","2024-02-11 23:00","2024-02-12 00:00","2024-02-12 01:00","2024-02-12 02:00","2024-02-12 03:00","2024-02-12 04:00","2024-02-12 05:00","2024-02-12 06:00","2024-02-12 07:00","2024-02-12 08:00","2024-02-12 09:00","2024-02-12 10:00","2024-02-12 11:00","2024-02-12 12:00","2024-02-12 13:00","2024-02-12 14:00","2024-02-12 15:00","2024-02-12 16:00","2024-02-12 17:00","2024-02-12 18:00","2024-02-12 19:00","2024-02-12 20:00","2024-02-12 21:00","2024-02-12 22:00","2024-02-12 23:00","2024-02-13 00:00","2024-02-13 01:00","2024-02-13 02:00","2024-02-13 03:00","2024-02-13 04:00","2024-02-13 05:00","2024-02-13 06:00","2024-02-13 07:00","2024-02-13 08:00","2024-02-13 09:00","2024-02-13 10:00","2024-02-13 11:00","2024-02-13 12:00","2024-02-13 13:00","2024-02-13 14:00","2024-02-13 15:00","2024-02-13 16:00","2024-02-13 17:00","2024-02-13 18:00","2024-02-13 19:00","2024-02-13 20:00","2024-02-13 21:00","2024-02-13 22:00","2024-02-13 23:00","2024-02-14 00:00","2024-02-14 01:00","2024-02-14 02:00","2024-02-14 03:00","2024-02-14 04:00","2024-02-14 05:00","2024-02-14 06:00","2024-02-14 07:00","2024-02-14 08:00","2024-02-14 09:00","2024-02-14 10:00","2024-02-14 11:00","2024-02-14 12:00","2024-02-14 13:00","2024-02-14 14:00","2024-02-14 15:00","2024-02-14 16:00","2024-02-14 17:00","2024-02-14 18:00","2024-02-14 19:00","2024-02-14 20:00","2024-02-14 21:00","2024-02-14 22:00","2024-02-14 23:00","2024-02-15 00:00","2024-02-15 01:00","2024-02-15 02:00","2024-02-15 03:00","2024-02-15 04:00","2024-02-15 05:00","2024-02-15 06:00","2024-02-15 07:00","2024-02-15 08:00","2024-02-15 09:00","2024-02-15 10:00","2024-02-15 11:00","2024-02-15 12:00","2024-02-15 13:00","2024-02-15 14:00","2024-02-15 15:00","2024-02-15 16:00","2024-02-15 17:00","2024-02-15 18:00","2024-02-15 19:00","2024-02-15 20:00","2024-02-15 21:00","2024-02-15 22:00","2024-02-15 23:00","2024-02-16 00:00","2024-02-16 01:00","2024-02-16 02:00","2024-02-16 03:00","2024-02-16 04:00","2024-02-16 05:00","2024-02-16 06:00","2024-02-16 07:00","2024-02-16 08:00","2024-02-16 09:00","2024-02-16 10:00","2024-02-16 11:00","2024-02-16 12:00","2024-02-16 13:00","2024-02-16 14:00","2024-02-16 15:00","2024-02-16 16:00","2024-02-16 17:00","2024-02-16 18:00","2024-02-16 19:00","2024-02-16 20:00","2024-02-16 21:00","2024-02-16 22:00","2024-02-16 23:00","2024-02-17 00:00","2024-02-17 01:00","2024-02-17 02:00","2024-02-17 03:00","2024-02-17 04:00","2024-02-17 05:00","2024-02-17 06:00","2024-02-17 07:00","2024-02-17 08:00","2024-02-17 09:00","2024-02-17 10:00","2024-02-17 11:00","2024-02-17 12:00","2024-02-17 13:00","2024-02-17 14:00","2024-02-17 15:00","2024-02-17 16:00","2024-02-17 17:00","2024-02-17 18:00","2024-02-17 19:00","2024-02-17 20:00","2024-02-17 21:00","2024-02-17 22:00","2024-02-17 23:00","2024-02-18 00:00","2024-02-18 01:00","2024-02-18 02:00","2024-02-18 03:00","2024-02-18 04:00","2024-02-18 05:00","2024-02-18 06:00","2024-02-18 07:00","2024-02-18 08:00","2024-02-18 09:00","2024-02-18 10:00","2024-02-18 11:00","2024-02-18 12:00","2024-02-18 13:00","2024-02-18 14:00","2024-02-18 15:00","2024-02-18 16:00","2024-02-18 17:00","2024-02-18 18:00","2024-02-18 19:00","2024-02-18 20:00","2024-02-18 21:00","2024-02-18 22:00","2024-02-18 23:00","2024-02-19 00:00","2024-02-19 01:00","2024-02-19 02:00","2024-02-19 03:00","2024-02-19 04:00","2024-02-19 05:00","2024-02-19 06:00","2024-02-19 07:00","2024-02-19 08:00","2024-02-19 09:00","2024-02-19 10:00","2024-02-19 11:00","2024-02-19 12:00","2024-02-19 13:00","2024-02-19 14:00","2024-02-19 15:00","2024-02-19 16:00","2024-02-19 17:00","2024-02-19 18:00","2024-02-19 19:00","2024-02-19 20:00","2024-02-19 21:00","2024-02-19 22:00","2024-02-19 23:00","2024-02-20 00:00","2024-02-20 01:00","2024-02-20 02:00","2024-02-20 03:00","2024-02-20 04:00","2024-02-20 05:00","2024-02-20 06:00","2024-02-20 07:00","2024-02-20 08:00","2024-02-20 09:00","2024-02-20 10:00","2024-02-20 11:00","2024-02-20 12:00","2024-02-20 13:00","2024-02-20 14:00","2024-02-20 15:00","2024-02-20 16:00","2024-02-20 17:00","2024-02-20 18:00","2024-02-20 19:00","2024-02-20 20:00","2024-02-20 21:00","2024-02-20 22:00","2024-02-20 23:00","2024-02-21 00:00","2024-02-21 01:00","2024-02-21 02:00","2024-02-21 03:00","2024-02-21 04:00","2024-02-21 05:00","2024-02-21 06:00","2024-02-21 07:00","2024-02-21 08:00","2024-02-21 09:00","2024-02-21 10:00","2024-02-21 11:00","2024-02-21 12:00","2024-02-21 13:00","2024-02-21 14:00","2024-02-21 15:00","2024-02-21 16:00","2024-02-21 17:00","2024-02-21 18:00","2024-02-21 19:00","2024-02-21 20:00","2024-02-21 21:00","2024-02-21 22:00","2024-02-21 23:00","2024-02-22 00:00","2024-02-22 01:00","2024-02-22 02:00","2024-02-22 03:00","2024-02-22 04:00","2024-02-22 05:00","2024-02-22 06:00","2024-02-22 07:00","2024-02-22 08:00","2024-02-22 09:00","2024-02-22 10:00","2024-02-22 11:00","2024-02-22 12:00","2024-02-22 13:00","2024-02-22 14:00","2024-02-22 15:00","2024-02-22 16:00","2024-02-22 17:00","2024-02-22 18:00","2024-02-22 19:00","2024-02-22 20:00","2024-02-22 21:00","2024-02-22 22:00","2024-02-22 23:00","2024-02-23 00:00","2024-02-23 01:00","2024-02-23 02:00","2024-02-23 03:00","2024-02-23 04:00","2024-02-23 05:00","2024-02-23 06:00","2024-02-23 07:00","2024-02-23 08:00","2024-02-23 09:00","2024-02-23 10:00","2024-02-23 11:00","2024-02-23 12:00","2024-02-23 13:00","2024-02-23 14:00","2024-02-23 15:00","2024-02-23 16:00","2024-02-23 17:00","2024-02-23 18:00","2024-02-23 19:00","2024-02-23 20:00","2024-02-23 21:00","2024-02-23 22:00","2024-02-23 23:00","2024-02-24 00:00","2024-02-24 01:00","2024-02-24 02:00","2024-02-24 03:00","2024-02-24 04:00","2024-02-24 05:00","2024-02-24 06:00","2024-02-24 07:00","2024-02-24 08:00","2024-02-24 09:00","2024-02-24 10:00","2024-02-24 11:00","2024-02-24 12:00","2024-02-24 13:00","2024-02-24 14:00","2024-02-24 15:00","2024-02-24 16:00","2024-02-24 17:00","2024-02-24 18:00","2024-02-24 19:00","2024-02-24 20:00","2024-02-24 21:00","2024-02-24 22:00","2024-02-24 23:00","2024-02-25 00:00","2024-02-25 01:00","2024-02-25 02:00","2024-02-25 03:00","2024-02-25 04:00","2024-02-25 05:00","2024-02-25 06:00","2024-02-25 07:00","2024-02-25 08:00","2024-02-25 09:00","2024-02-25 10:00","2024-02-25 11:00","2024-02-25 12:00","2024-02-25 13:00","2024-02-25 14:00","2024-02-25 15:00","2024-02-25 16:00","2024-02-25 17:00","2024-02-25 18:00","2024-02-25 19:00","2024-02-25 20:00","2024-02-25 21:00","2024-02-25 22:00","2024-02-25 23:00","2024-02-26 00:00","2024-02-26 01:00","2024-02-26 02:00","2024-02-26 03:00","2024-02-26 04:00","2024-02-26 05:00","2024-02-26 06:00","2024-02-26 07:00","2024-02-26 08:00","2024-02-26 09:00","2024-02-26 10:00","2024-02-26 11:00","2024-02-26 12:00","2024-02-26 13:00","2024-02-26 14:00","2024-02-26 15:00","2024-02-26 16:00","2024-02-26 17:00","2024-02-26 18:00","2024-02-26 19:00","2024-02-26 20:00","2024-02-26 21:00","2024-02-26 22:00","2024-02-26 23:00","2024-02-27 00:00","2024-02-27 01:00","2024-02-27 02:00","2024-02-27 03:00","2024-02-27 04:00","2024-02-27 05:00","2024-02-27 06:00","2024-02-27 07:00","2024-02-27 08:00","2024-02-27 09:00","2024-02-27 10:00","2024-02-27 11:00","2024-02-27 12:00","2024-02-27 13:00","2024-02-27 14:00","2024-02-27 15:00","2024-02-27 16:00","2024-02-27 17:00","2024-02-27 18:00","2024-02-27 19:00","2024-02-27 20:00","2024-02-27 21:00","2024-02-27 22:00","2024-02-27 23:00","2024-02-28 00:00","2024-02-28 01:00","2024-02-28 02:00","2024-02-28 03:00","2024-02-28 04:00","2024-02-28 05:00","2024-02-28 06:00","2024-02-28 07:00","2024-02-28 08:00","2024-02-28 09:00","2024-02-28 10:00","2024-02-28 11:00","2024-02-28 12:00","2024-02-28 13:00","2024-02-28 14:00","2024-02-28 15:00","2024-02-28 16:00","2024-02-28 17:00","2024-02-28 18:00","2024-02-28 19:00","2024-02-28 20:00","2024-02-28 21:00","2024-02-28 22:00","2024-02-28 23:00","2024-02-29 00:00","2024-02-29 01:00","2024-02-29 02:00","2024-02-29 03:00","2024-02-29 04:00","2024-02-29 05:00","2024-02-29 06:00","2024-02-29 07:00","2024-02-29 08:00","2024-02-29 09:00","2024-02-29 10:00","2024-02-29 11:00","2024-02-29 12:00","2024-02-29 13:00","2024-02-29 14:00","2024-02-29 15:00","2024-02-29 16:00","2024-02-29 17:00","2024-02-29 18:00","2024-02-29 19:00","2024-02-29 20:00","2024-02-29 21:00","2024-02-29 22:00","2024-02-29 23:00","2024-03-01 00:00","2024-03-01 01:00","2024-03-01 02:00","2024-03-01 03:00","2024-03-01 04:00","2024-03-01 05:00","2024-03-01 06:00","2024-03-01 07:00","2024-03-01 08:00","2024-03-01 09:00","2024-03-01 10:00","2024-03-01 11:00","2024-03-01 12:00","2024-03-01 13:00","2024-03-01 14:00","2024-03-01 15:00","2024-03-01 16:00","2024-03-01 17:00","2024-03-01 18:00","2024-03-01 19:00","2024-03-01 20:00","2024-03-01 21:00","2024-03-01 22:00","2024-03-01 23:00","2024-03-02 00:00","2024-03-02 01:00","2024-03-02 02:00","2024-03-02 03:00","2024-03-02 04:00","2024-03-02 05:00","2024-03-02 06:00","2024-03-02 07:00","2024-03-02 08:00","2024-03-02 09:00","2024-03-02 10:00","2024-03-02 11:00","2024-03-02 12:00","2024-03-02 13:00","2024-03-02 14:00","2024-03-02 15:00","2024-03-02 16:00","2024-03-02 17:00","2024-03-02 18:00","2024-03-02 19:00","2024-03-02 20:00","2024-03-02 21:00","2024-03-02 22:00","2024-03-02 23:00","2024-03-03 00:00","2024-03-03 01:00","2024-03-03 02:00","2024-03-03 03:00","2024-03-03 04:00","2024-03-03 05:00","2024-03-03 06:00","2024-03-03 07:00","2024-03-03 08:00","2024-03-03 09:00","2024-03-03 10:00","2024-03-03 11:00","2024-03-03 12:00","2024-03-03 13:00","2024-03-03 14:00","2024-03-03 15:00","2024-03-03 16:00","2024-03-03 17:00","2024-03-03 18:00","2024-03-03 19:00","2024-03-03 20:00","2024-03-03 21:00","2024-03-03 22:00","2024-03-03 23:00","2024-03-04 00:00","2024-03-04 01:00","2024-03-04 02:00","2024-03-04 03:00","2024-03-04 04:00","2024-03-04 05:00","2024-03-04 06:00","2024-03-04 07:00","2024-03-04 08:00","2024-03-04 09:00","2024-03-04 10:00","2024-03-04 11:00","2024-03-04 12:00","2024-03-04 13:00","2024-03-04 14:00","2024-03-05 10:00","2024-03-05 11:00","2024-03-05 12:00","2024-03-05 13:00","2024-03-05 14:00","2024-03-05 15:00","2024-03-05 16:00","2024-03-05 17:00","2024-03-05 18:00","2024-03-05 19:00","2024-03-05 20:00","2024-03-05 21:00","2024-03-05 22:00","2024-03-05 23:00","2024-03-06 00:00","2024-03-06 01:00","2024-03-06 02:00","2024-03-06 03:00","2024-03-06 04:00","2024-03-06 05:00","2024-03-06 06:00","2024-03-06 07:00","2024-03-06 08:00","2024-03-06 09:00","2024-03-06 10:00","2024-03-06 11:00","2024-03-06 12:00","2024-03-06 13:00","2024-03-06 14:00","2024-03-06 15:00","2024-03-06 16:00","2024-03-06 17:00","2024-03-06 18:00","2024-03-06 19:00","2024-03-06 20:00","2024-03-06 21:00","2024-03-06 22:00","2024-03-06 23:00","2024-03-07 00:00","2024-03-07 01:00","2024-03-07 02:00","2024-03-07 03:00","2024-03-07 04:00","2024-03-07 05:00","2024-03-07 06:00","2024-03-07 07:00","2024-03-07 08:00","2024-03-07 09:00","2024-03-07 10:00","2024-03-07 11:00","2024-03-07 12:00","2024-03-07 13:00","2024-03-07 14:00","2024-03-07 15:00","2024-03-07 16:00","2024-03-07 17:00","2024-03-07 18:00","2024-03-07 19:00","2024-03-07 20:00","2024-03-07 21:00","2024-03-07 22:00","2024-03-07 23:00","2024-03-08 00:00","2024-03-08 01:00","2024-03-08 02:00","2024-03-08 03:00","2024-03-08 04:00","2024-03-08 05:00","2024-03-08 06:00","2024-03-08 07:00","2024-03-08 08:00","2024-03-08 09:00","2024-03-08 10:00","2024-03-08 11:00","2024-03-08 12:00","2024-03-08 13:00","2024-03-08 14:00","2024-03-08 15:00","2024-03-08 16:00","2024-03-08 17:00","2024-03-08 18:00","2024-03-08 19:00","2024-03-08 20:00","2024-03-08 21:00","2024-03-08 22:00","2024-03-08 23:00","2024-03-09 00:00","2024-03-09 01:00","2024-03-09 02:00","2024-03-09 03:00","2024-03-09 04:00","2024-03-09 05:00","2024-03-09 06:00","2024-03-09 07:00","2024-03-09 08:00","2024-03-09 09:00","2024-03-09 10:00","2024-03-09 11:00","2024-03-09 12:00","2024-03-09 13:00","2024-03-09 14:00","2024-03-09 15:00","2024-03-09 16:00","2024-03-09 17:00","2024-03-09 18:00","2024-03-09 19:00","2024-03-09 20:00","2024-03-09 21:00","2024-03-09 22:00","2024-03-09 23:00","2024-03-10 00:00"]}');
|
||
}
|
||
},
|
||
onClickTumidityTrend(n) {
|
||
this.tumidityBtnNav = n;
|
||
if (n == 1) {
|
||
this.tumidityTrendData = JSON.parse('{"lineData":[[16.6,11.6,11.7,11.7,17,16.3,16.8,16.1,18.4,57.3,34.1,16.1,24.9,17,11.6,29.3,31.9,44.2,9.6,34.6,30.2,42.4,19.3,11.9,4.2,4.7,3.4,12,2.1,2.1,2.1,2.1,7,2.2,2,2.1,2,30,27,39.4,30.2,16.2,9.5,6.3,11.6,7.4,13.5,4.2,4.5,13.5,9.3,12.1,2.9,7.6,2.9,2.9,2.8,2.8,2.8,2.9,2.8,11.2,18.3,20.5,11.3,17.8,10.6,10.5,11.2,11.9,16.8,8.7,8.7,18.6,10.5,4.5,8.5,7.3,2.3,7.4,7.2,6.7,7.3,7.3,2.3,25.4,31.7,23.4,21.7,18.4,8.8,7,17.8,11,5.8,4.8,4.6,5.1,8.7,20.5,7.1,25,2.4,2.2,6.6,2.3,2.3,7.1,2.3,19.8,19.2,21.1,13.6,23.6,13.9,4.9,7.3,7.2,6.6,7.4,9.6,9.2,2.8,2.3,2.3,2.3],[6.7,1.4,1.4,9.8,1.4,11.3,18.1,6.4,24.2,37.1,25.6,21.2,30,5.7,21.2,40.2,23.3,39.1,30.7,28.9,19.5,34.3,12.9,15.8,14.9,9.9,10.2,7,2.6,7.1,2.1,14.5,2.2,2.1,2.1,15.9,14.5,36.2,36,31.5,25.6,26.9,17.9,14.4,19.8,14.9,22.9,27.9,21.5,28.4,22,19.6,8.6,8.3,13.4,18.2,12.5,8.1,12,8.2,8.2,26.1,17.7,9.4,9,18.9,19,11.3,17.8,19,24.7,10.4,20.9,13.6,13.5,6.9,7,1.4,7.5,6.3,16.5,5.9,5.9,2,14.3,36.3,34.4,23.8,23.1,26,14.6,16.2,4.2,8.7,2.9,6.6,4.4,10.4,6.7,14.6,6.5,1.4,6.9,1.4,12.1,6.8,6.1,14.9,6.4,25.5,20,15.1,26.6,14.9,7.8,6.2,13.4,9.6,25.8,12.6,12.4,6.8,5.9,4.6,9.3,3.5],[11.2,4.8,15.9,4,14.1,4,15.9,1.9,10.8,22.3,12,13.4,25.8,15.3,16.6,16.1,8.9,17,7.3,10.5,9.9,15.6,20.7,18.5,2.9,7,2.9,1.8,11.4,1.3,11.5,1.2,11.5,1.3,1.2,11.6,11.2,21,21.2,17.3,9.4,19.6,5.4,17.3,10.2,9.6,7.4,6.6,4,2.5,4.4,4.5,9.7,10.1,11.1,1.5,11.1,1.5,1.4,1.5,9.1,11,18.5,6.1,24.5,4.1,2.3,9.7,14.4,6.7,17.1,14,3.4,2.6,10.9,1.2,10.8,1.3,6.3,1.3,6.1,1.3,7.8,8.5,7.9,21.1,13.1,19.9,14.4,24.3,4.2,17.9,16.8,6,18.6,6.4,12.3,14.5,15,4.4,14.4,12.9,1.7,15.7,4.3,4.4,4.4,4.4,15.2,9.2,6.6,6.5,18,7.8,8.6,3.4,10,9.1,21.9,6.6,4,5.5,1.5,4.2,4.1,5.7],[131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131]],"color":["#008ffd","#f4f660","#5af9fd","#FF0016"],"legend":["A相电流","B相电流","C相电流","电流阈值"],"unit":"A","date":["2024-03-04 00:00","2024-03-04 01:00","2024-03-04 02:00","2024-03-04 03:00","2024-03-04 04:00","2024-03-04 05:00","2024-03-04 06:00","2024-03-04 07:00","2024-03-04 08:00","2024-03-04 09:00","2024-03-04 10:00","2024-03-04 11:00","2024-03-04 12:00","2024-03-04 13:00","2024-03-04 14:00","2024-03-05 10:00","2024-03-05 11:00","2024-03-05 12:00","2024-03-05 13:00","2024-03-05 14:00","2024-03-05 15:00","2024-03-05 16:00","2024-03-05 17:00","2024-03-05 18:00","2024-03-05 19:00","2024-03-05 20:00","2024-03-05 21:00","2024-03-05 22:00","2024-03-05 23:00","2024-03-06 00:00","2024-03-06 01:00","2024-03-06 02:00","2024-03-06 03:00","2024-03-06 04:00","2024-03-06 05:00","2024-03-06 06:00","2024-03-06 07:00","2024-03-06 08:00","2024-03-06 09:00","2024-03-06 10:00","2024-03-06 11:00","2024-03-06 12:00","2024-03-06 13:00","2024-03-06 14:00","2024-03-06 15:00","2024-03-06 16:00","2024-03-06 17:00","2024-03-06 18:00","2024-03-06 19:00","2024-03-06 20:00","2024-03-06 21:00","2024-03-06 22:00","2024-03-06 23:00","2024-03-07 00:00","2024-03-07 01:00","2024-03-07 02:00","2024-03-07 03:00","2024-03-07 04:00","2024-03-07 05:00","2024-03-07 06:00","2024-03-07 07:00","2024-03-07 08:00","2024-03-07 09:00","2024-03-07 10:00","2024-03-07 11:00","2024-03-07 12:00","2024-03-07 13:00","2024-03-07 14:00","2024-03-07 15:00","2024-03-07 16:00","2024-03-07 17:00","2024-03-07 18:00","2024-03-07 19:00","2024-03-07 20:00","2024-03-07 21:00","2024-03-07 22:00","2024-03-07 23:00","2024-03-08 00:00","2024-03-08 01:00","2024-03-08 02:00","2024-03-08 03:00","2024-03-08 04:00","2024-03-08 05:00","2024-03-08 06:00","2024-03-08 07:00","2024-03-08 08:00","2024-03-08 09:00","2024-03-08 10:00","2024-03-08 11:00","2024-03-08 12:00","2024-03-08 13:00","2024-03-08 14:00","2024-03-08 15:00","2024-03-08 16:00","2024-03-08 17:00","2024-03-08 18:00","2024-03-08 19:00","2024-03-08 20:00","2024-03-08 21:00","2024-03-08 22:00","2024-03-08 23:00","2024-03-09 00:00","2024-03-09 01:00","2024-03-09 02:00","2024-03-09 03:00","2024-03-09 04:00","2024-03-09 05:00","2024-03-09 06:00","2024-03-09 07:00","2024-03-09 08:00","2024-03-09 09:00","2024-03-09 10:00","2024-03-09 11:00","2024-03-09 12:00","2024-03-09 13:00","2024-03-09 14:00","2024-03-09 15:00","2024-03-09 16:00","2024-03-09 17:00","2024-03-09 18:00","2024-03-09 19:00","2024-03-09 20:00","2024-03-09 21:00","2024-03-09 22:00","2024-03-09 23:00","2024-03-10 00:00"]}');
|
||
} else {
|
||
this.tumidityTrendData = JSON.parse('{"lineData":[[16.2,2.2,14.8,2.2,2.2,17.1,2.2,2.2,2.2,19,6.7,5.7,1.7,1.6,1.6,1.7,1.7,1.6,1.6,2.1,2.2,2.1,2.1,16.5,2.2,2.2,2.2,13.9,2.2,15.2,2.2,2.2,2.2,16.6,8.4,5.2,0.9,0.9,0.9,0.9,1,14.9,1.2,1.7,2.2,2.2,16.1,2.2,2.2,16.1,2.2,2.2,16.2,2.2,2.2,2.2,14.6,2.3,7.2,6.4,6.4,2.3,2.3,2.3,2.3,2.3,1.6,1.7,1.6,2.2,2.2,2.2,2.2,2.2,2.2,2.2,2.2,2.2,2.2,2.2,2.2,2.3,7.6,3,3.1,1.6,5.8,6.1,1.6,6.1,1.6,5.9,2.2,7,6.5,2.1,2.2,2.2,2.2,7,7.1,6.9,2.2,2.1,23.7,15.9,12.9,12.2,1.7,1.7,7.2,1.7,6.5,1.7,6.6,1.7,1.7,2.2,2.3,2.5,6.7,7,2.3,6.8,2.3,2.3,7,6.8,6.8,7.2,16.2,1.6,1.7,1.7,1.7,1.7,2.4,2.3,2.4,6.6,2.4,2.9,7.9,2.9,3,3,3,7.5,7.4,3,2.9,7.3,3.7,12.8,3.6,2.9,3,3,3.7,3,1.7,1.7,1.7,2.2,2.2,2.2,2.2,2.2,2.3,2.3,2.3,2.3,2.3,2.3,2.4,2.2,2.2,16.2,1.8,1.7,1.7,1.7,11.1,1.7,1.7,1.7,1.7,1.7,2.2,2.2,1.7,1.8,1.7,1.7,1.7,1.7,1.7,1.7,1.8,1.7,1.7,1.7,17.3,2.8,10.1,6.6,19.3,21.2,2.4,9.1,7.8,1.8,6.6,1.8,5.5,8.7,8.2,1.9,9.3,8.8,8.3,8.9,1.9,1.8,19.1,33.9,28.6,30.1,18.6,12.1,33.1,21.4,27.8,14.9,20.6,10,9.5,3.6,3.5,10.2,3.6,2.8,2.8,6.5,2.8,7,6.3,23.2,36.9,37.3,19.8,35.2,21.4,17.3,18.6,21.4,32.9,22,31.5,14.5,36.7,26.3,3.1,3,2.3,2.3,2.3,2.3,2.3,2.3,2.3,2.3,41.8,37.1,32.2,38.9,33.1,27.4,46.8,38,55,34.7,28.1,19.6,13.3,2.8,2.8,12,2.9,2.3,2.3,2.3,2.3,2.3,2.3,2.3,21.9,56.5,50.1,50.8,58.2,46,32.8,45.2,39.3,19.9,34.6,12.5,8.3,11.5,8.6,28.7,22.5,19,10.3,10.8,10.7,6.7,22.4,5.9,31.2,53.7,28.6,37.6,38.3,31,27.1,35.6,32.5,34.3,28.9,10.4,9.2,27.4,8.7,31,7.9,5.8,20.7,6,19.9,19.4,8.4,21.1,33.3,40.7,32.7,27.8,19.8,19.4,34.2,14.4,9.1,2.7,2.1,2.1,2.1,2.1,2.1,2.1,2.1,2.1,2.1,2.1,2.1,2.2,2.2,2.1,38.9,52.2,45.8,23,25.4,13.6,39,20.4,20.9,23.3,15.4,9.6,23,10.2,2.9,12,2.8,2.4,2.3,2.3,2.3,2.3,2.3,2.3,25.6,59.7,37.5,35,42.7,22.6,34.8,57.1,34.3,23.7,17.6,25.9,29.5,26.7,17.3,8.1,7.7,17.4,18.2,3.3,15.8,6.9,14,30.4,50.1,47.4,38.8,40.5,9.2,8.3,23.8,7.9,10.4,7.2,10.2,4.9,14.6,7.2,2.1,2.2,6.9,6.8,2.2,2.2,7.1,7,2.2,2.2,16.2,19.6,25.2,23.2,56.3,12.8,21.3,28.5,22,29.1,24.7,18.5,23.5,2.9,3,7.8,2.9,8,3.1,3,7.4,7.7,3.2,7.9,36.7,20.5,34.4,26.4,10.2,11.5,23.8,12.3,11.9,13.9,18.4,14.7,10.1,13.4,2.9,2.8,2.9,2.9,2.9,2.9,2.9,3,2.9,2.8,18.9,36.3,48.5,31.9,20,31,13.4,21.4,14,20,11.5,7.3,7.4,2.6,3.4,7.5,2.8,2.7,7.4,2.7,2.7,2.7,2.7,7.1,44.4,41.3,38.1,27.9,29.4,18.2,14.1,6.3,23.8,11,5.4,4.5,11,2.8,2.4,2.4,3,7.8,7.6,7.6,2.9,2.9,7.6,2.9,18.8,18,56.7,26.6,24.6,21.8,19.5,6.2,6.2,18,5.2,13.4,18.2,12.3,11.7,16.4,16.6,11.6,11.7,11.7,17,16.3,16.8,16.1,18.4,57.3,34.1,16.1,24.9,17,11.6,29.3,31.9,44.2,9.6,34.6,30.2,42.4,19.3,11.9,4.2,4.7,3.4,12,2.1,2.1,2.1,2.1,7,2.2,2,2.1,2,30,27,39.4,30.2,16.2,9.5,6.3,11.6,7.4,13.5,4.2,4.5,13.5,9.3,12.1,2.9,7.6,2.9,2.9,2.8,2.8,2.8,2.9,2.8,11.2,18.3,20.5,11.3,17.8,10.6,10.5,11.2,11.9,16.8,8.7,8.7,18.6,10.5,4.5,8.5,7.3,2.3,7.4,7.2,6.7,7.3,7.3,2.3,25.4,31.7,23.4,21.7,18.4,8.8,7,17.8,11,5.8,4.8,4.6,5.1,8.7,20.5,7.1,25,2.4,2.2,6.6,2.3,2.3,7.1,2.3,19.8,19.2,21.1,13.6,23.6,13.9,4.9,7.3,7.2,6.6,7.4,9.6,9.2,2.8,2.3,2.3,2.3],[1.8,14.6,12.1,7.6,6.3,13.2,6.6,7.7,11.7,12.7,11.1,7.6,12.8,2.4,2.7,7.4,13.7,7.5,6.5,2.3,12.9,19.5,11.9,14.4,6.8,1.8,12,9.1,15.3,6.7,8.6,5.7,5.8,15.1,14,15.1,7.6,2.2,6.5,1.7,1.7,2.1,2.2,7.1,2.2,2.2,13,12.2,7.4,1.8,9.2,7.2,7.5,11.5,12.1,6.3,6.8,9.5,2.2,16.5,9.7,4.9,6.6,4.6,6.9,1.7,13.7,7,6.9,7.9,1.8,6.7,6.9,1.8,1.8,6.8,12.6,6.4,12.5,7.3,7.5,6.7,21,11.3,10.2,13.6,8.5,12.6,1.7,5.7,11.3,6.5,6.4,11.9,1.7,10,1.8,7.6,1.8,6.4,13.1,1.8,11.4,12.6,11.5,6.3,11.6,16,9.3,17.2,12.7,21.2,4.6,10.8,7.1,12.1,12.3,1.8,6.5,1.8,6.5,6.4,11.4,7.8,12.9,7.6,7.4,13.6,13.7,5.2,20,22.1,4.6,10.3,6.7,7.3,9.2,10.4,16.9,7.3,8.5,16.7,14.6,1.8,8.7,7.4,15.3,8.7,9.5,1.8,7.3,1.7,1.7,14.8,13.1,11.3,14.8,4.9,4.9,4.8,1.7,1.7,1.8,1.8,1.8,9.5,6.4,6.4,13.6,10.6,11.6,8.8,6.2,6.5,9.5,11.5,13.7,1.8,6.9,1.7,6.7,6.9,1.7,13.6,1.7,7.4,6.5,6.3,6.8,6.9,1.8,11.7,11.8,6.2,6.5,6.3,12.8,1.8,12.5,1.7,14,10.7,27.6,18.8,9.9,14.8,15.8,9.7,16.1,10.5,5.9,6.7,14.9,12.8,15,14.7,9.7,8.2,11.9,13.7,11.6,20.6,11.4,10.7,31.9,38,37.2,31.2,26.3,26.6,17.8,24.1,24.9,39.2,24.8,7.2,6.5,12.3,1.8,6.2,7.2,7.1,14.7,13.8,14.4,15.4,19.9,7.7,41.6,55.6,57,41.5,51.8,36.3,34,27.1,29.4,26.6,21.3,24.3,15.2,7.4,12.7,6.5,13.3,11.9,11,13.2,14.3,6.4,12.8,13.1,32,47.5,50,51.6,52.9,47,49.1,35.8,36.2,42,14.9,24,15.4,7.5,13.3,11.7,14,14.9,14.9,12.3,14.8,14.8,12,13.2,28.5,40.5,51.4,49,46,35.5,27.8,31.7,27,37.8,30.7,12.3,14.2,12.4,19.5,31.4,21.1,15.3,21.1,15.3,19.3,21,27.3,12.5,18.6,34.4,32.9,38.9,32.1,26.4,32.3,41.1,30.8,36,14.3,8,14.5,13.1,13.9,8.7,11.6,12.7,15,10.7,13.3,7.1,8,15.3,14.1,8.8,26.3,22.6,21.6,14.1,15,21.5,14,8.5,14.4,14.3,7.7,8.5,6.5,12,8.3,13.1,14.7,7.8,13.6,10.5,8.4,14.1,29.5,21,31.1,36.3,42,19.1,24.3,12.9,30,34.3,22.2,19.5,14.7,14.7,8.3,17,9.7,15.4,14.3,1.9,1.9,14.4,18.1,6.7,38.9,44.8,37,46,23.5,30.4,36.5,25.7,27.1,26.4,27.3,19.4,23,8.6,7.2,9.1,6.2,7,6,12.7,13.1,12.2,14.2,8.3,37.6,48.5,61.5,38.9,28.3,32.4,22.1,17,24.5,19.3,18.3,24.2,19.9,9.8,4.8,8.4,25.6,12.6,20.7,22.1,25.2,7.2,16.4,22.9,24.1,56.5,42.9,15.3,26.8,19.3,12.9,41.3,9.3,26.9,25.7,18.5,21.4,21.6,7.4,8.7,17.6,2.1,14.4,12.8,14.8,18.4,7.1,7.2,36.6,39.5,40.4,28.6,40.4,25.8,23.1,30.4,28.3,21.8,26.6,21.3,7.1,14.8,16.8,5.5,15.4,1.8,6.4,6,12.9,10.8,15.5,6,25.2,36.2,39.6,28.6,26.3,19.7,19,28.3,19.9,23.2,21,10.8,12,2.2,12.5,2.3,14.1,6.9,6.9,5.9,6.9,7.1,6.1,10.8,33,34.6,39.2,29.8,16.6,14.4,15,29.3,30.5,18,9,12.5,6.9,5.6,16.1,7,16.4,11.7,20.1,19.1,21.5,14.4,22.7,14.8,20.7,29.5,29.5,11.1,27.6,20.8,10.5,17.4,7.6,7,15.6,12.6,6.9,13.8,4.4,12.7,6.7,1.4,1.4,9.8,1.4,11.3,18.1,6.4,24.2,37.1,25.6,21.2,30,5.7,21.2,40.2,23.3,39.1,30.7,28.9,19.5,34.3,12.9,15.8,14.9,9.9,10.2,7,2.6,7.1,2.1,14.5,2.2,2.1,2.1,15.9,14.5,36.2,36,31.5,25.6,26.9,17.9,14.4,19.8,14.9,22.9,27.9,21.5,28.4,22,19.6,8.6,8.3,13.4,18.2,12.5,8.1,12,8.2,8.2,26.1,17.7,9.4,9,18.9,19,11.3,17.8,19,24.7,10.4,20.9,13.6,13.5,6.9,7,1.4,7.5,6.3,16.5,5.9,5.9,2,14.3,36.3,34.4,23.8,23.1,26,14.6,16.2,4.2,8.7,2.9,6.6,4.4,10.4,6.7,14.6,6.5,1.4,6.9,1.4,12.1,6.8,6.1,14.9,6.4,25.5,20,15.1,26.6,14.9,7.8,6.2,13.4,9.6,25.8,12.6,12.4,6.8,5.9,4.6,9.3,3.5],[1,1,1,1,1,1,1,1,1,0.9,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.4,0.9,0.9,1,1,1,1,1,1,1,1,1,1,1,1,0.3,0.3,0.4,0.4,0.4,0.4,0.4,0.4,0.3,0.4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,7.8,5.1,4.3,4,0.7,0.7,0.7,3.5,0.4,0.4,0.4,0.4,0.9,0.9,0.9,0.9,0.9,0.9,0.9,0.9,0.9,0.9,0.9,0.9,4.2,0.9,0.9,9.4,0.5,0.5,0.6,1.6,1.9,0.7,9.5,1.3,1.3,11.1,6,1.3,10.5,7.8,9.2,1.3,11.4,10.8,9.4,1.2,0.6,9.5,1,0.6,10.9,10.9,0.5,9.3,10.9,10.1,7.6,10.3,1.1,4.8,1.1,1.1,10.9,1.1,10.5,8.4,1.1,1.1,10.8,10.7,0.6,1,1,9.2,0.5,0.5,0.6,8.1,1.1,0.6,0.6,0.6,1.1,1.1,1.1,1.1,1.1,1.1,1.1,1.1,1.1,1.1,1.1,7.2,11.6,14.4,3.4,1,0.6,0.6,1.1,1,1.1,0.7,1.1,1.1,1.1,1.1,1.1,1.1,1.1,1.1,1.1,1.1,1.1,1.1,1.1,1.1,7.3,1.7,11.6,1.1,17.8,1.1,15.4,4.1,1.6,1,1.1,10.3,1.8,1.2,1.2,10.6,8.7,1.2,1.2,1.2,1.2,1.2,1.8,1.7,4.1,7,6.8,3.4,3.4,12.3,14.6,4.7,1.7,9.3,1.2,1.1,0.7,0.7,11,0.7,0.7,0.7,10.2,10.9,8.2,7.6,11,35.4,29.1,38.3,32.9,21.7,20.1,21.9,21.8,12.6,16.1,6.5,14.6,13.1,13.1,13.6,14.4,7.6,0.8,10.9,11,12.7,12.9,1,0.8,20.6,16.2,23.2,20.1,25.9,19.2,22.6,19.9,18.9,23.3,32.4,24.8,24.9,13.9,12.5,10.6,13.5,13.5,13.4,13.6,15.1,10.4,13.7,13.5,34.2,34.3,31.1,44.7,20.5,18.7,26.7,26.2,16.3,32.7,32.3,25.5,17.4,11.7,11.2,10.5,10.8,11.1,11.1,11,11.3,10.9,10.9,11.7,22,20.6,24.6,33.7,31.3,17,31.6,32.8,20.1,17.9,21.2,17.9,17,15.3,15.2,11.8,14.7,16.6,17.7,14.7,15,16.2,16.5,16.7,35.9,32.3,32.9,25.1,39.4,13.3,27,34.9,14.1,29.5,23.1,4.9,3.5,0.9,3.5,3.5,3.5,3.5,3.5,3.5,0.9,6,5.2,11.7,23.2,16.3,12,15.1,14.4,7.7,7.1,13.1,10.9,1.5,1,1,1,1,1.1,1.1,1.1,1.1,1.1,1,1,1,1,1.1,24.7,23,23.8,12.7,12.7,12.5,13.9,21.8,20.8,17,18.1,17,7.4,7.4,17.2,4.6,5.1,4.6,9,7.7,7.7,7.7,9.4,8.3,16.9,21.5,27.4,14.3,19.8,5.3,15.2,24.3,15.2,12.3,14.7,13.5,3.6,12.9,3.9,13.4,4,11.5,14.6,7.5,9.5,10.6,10.6,12.6,23.7,23.6,30.7,21.4,16.5,7.9,7.1,17.5,16.9,21.7,26.2,15,4.9,4.3,1.3,5.5,14.2,3.9,14,11.2,15.2,1.2,4.3,15.2,23.4,14.5,14.6,13.3,18.3,17.9,24.5,20.3,20,12.1,9.3,4.9,8.8,6.6,9.4,10.5,1.1,9.8,10.4,1,10.2,1,10.8,1,20.6,20.7,7.8,15,17.6,22.1,7,20.2,14.8,25.3,9.6,1.7,1.8,1.3,8.4,10.5,7.8,8.6,1.2,8.3,1.2,1.2,10,1.6,27.7,17.4,21.3,15.2,19.4,16.9,15.3,22,21.7,11.8,16.2,12.5,14.4,12.8,11.1,11.1,1.4,10.4,15.2,10.9,12.8,4.1,10.7,9.8,19.4,35,23.4,11.8,7.7,13.7,5.8,4.7,9.2,10.5,16.5,10.2,11.8,11.8,1.4,4.3,12.4,13.6,15.6,11.9,4.3,9.9,12.9,14.8,25.8,25.2,12.5,9.8,19.7,10.6,9.8,8.5,16.4,4.5,10.8,4.4,4.4,6,14.2,10.1,11.2,4.8,15.9,4,14.1,4,15.9,1.9,10.8,22.3,12,13.4,25.8,15.3,16.6,16.1,8.9,17,7.3,10.5,9.9,15.6,20.7,18.5,2.9,7,2.9,1.8,11.4,1.3,11.5,1.2,11.5,1.3,1.2,11.6,11.2,21,21.2,17.3,9.4,19.6,5.4,17.3,10.2,9.6,7.4,6.6,4,2.5,4.4,4.5,9.7,10.1,11.1,1.5,11.1,1.5,1.4,1.5,9.1,11,18.5,6.1,24.5,4.1,2.3,9.7,14.4,6.7,17.1,14,3.4,2.6,10.9,1.2,10.8,1.3,6.3,1.3,6.1,1.3,7.8,8.5,7.9,21.1,13.1,19.9,14.4,24.3,4.2,17.9,16.8,6,18.6,6.4,12.3,14.5,15,4.4,14.4,12.9,1.7,15.7,4.3,4.4,4.4,4.4,15.2,9.2,6.6,6.5,18,7.8,8.6,3.4,10,9.1,21.9,6.6,4,5.5,1.5,4.2,4.1,5.7],[131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131,131]],"color":["#008ffd","#f6d023","#5af9fd","#FF0016"],"legend":["A相电流","B相电流","C相电流","电流阈值"],"unit":"A","date":["2024-02-10 00:00","2024-02-10 01:00","2024-02-10 02:00","2024-02-10 03:00","2024-02-10 04:00","2024-02-10 05:00","2024-02-10 06:00","2024-02-10 07:00","2024-02-10 08:00","2024-02-10 09:00","2024-02-10 10:00","2024-02-10 11:00","2024-02-10 12:00","2024-02-10 13:00","2024-02-10 14:00","2024-02-10 15:00","2024-02-10 16:00","2024-02-10 17:00","2024-02-10 18:00","2024-02-10 19:00","2024-02-10 20:00","2024-02-10 21:00","2024-02-10 22:00","2024-02-10 23:00","2024-02-11 00:00","2024-02-11 01:00","2024-02-11 02:00","2024-02-11 03:00","2024-02-11 04:00","2024-02-11 05:00","2024-02-11 06:00","2024-02-11 07:00","2024-02-11 08:00","2024-02-11 09:00","2024-02-11 10:00","2024-02-11 11:00","2024-02-11 12:00","2024-02-11 13:00","2024-02-11 14:00","2024-02-11 15:00","2024-02-11 16:00","2024-02-11 17:00","2024-02-11 18:00","2024-02-11 19:00","2024-02-11 20:00","2024-02-11 21:00","2024-02-11 22:00","2024-02-11 23:00","2024-02-12 00:00","2024-02-12 01:00","2024-02-12 02:00","2024-02-12 03:00","2024-02-12 04:00","2024-02-12 05:00","2024-02-12 06:00","2024-02-12 07:00","2024-02-12 08:00","2024-02-12 09:00","2024-02-12 10:00","2024-02-12 11:00","2024-02-12 12:00","2024-02-12 13:00","2024-02-12 14:00","2024-02-12 15:00","2024-02-12 16:00","2024-02-12 17:00","2024-02-12 18:00","2024-02-12 19:00","2024-02-12 20:00","2024-02-12 21:00","2024-02-12 22:00","2024-02-12 23:00","2024-02-13 00:00","2024-02-13 01:00","2024-02-13 02:00","2024-02-13 03:00","2024-02-13 04:00","2024-02-13 05:00","2024-02-13 06:00","2024-02-13 07:00","2024-02-13 08:00","2024-02-13 09:00","2024-02-13 10:00","2024-02-13 11:00","2024-02-13 12:00","2024-02-13 13:00","2024-02-13 14:00","2024-02-13 15:00","2024-02-13 16:00","2024-02-13 17:00","2024-02-13 18:00","2024-02-13 19:00","2024-02-13 20:00","2024-02-13 21:00","2024-02-13 22:00","2024-02-13 23:00","2024-02-14 00:00","2024-02-14 01:00","2024-02-14 02:00","2024-02-14 03:00","2024-02-14 04:00","2024-02-14 05:00","2024-02-14 06:00","2024-02-14 07:00","2024-02-14 08:00","2024-02-14 09:00","2024-02-14 10:00","2024-02-14 11:00","2024-02-14 12:00","2024-02-14 13:00","2024-02-14 14:00","2024-02-14 15:00","2024-02-14 16:00","2024-02-14 17:00","2024-02-14 18:00","2024-02-14 19:00","2024-02-14 20:00","2024-02-14 21:00","2024-02-14 22:00","2024-02-14 23:00","2024-02-15 00:00","2024-02-15 01:00","2024-02-15 02:00","2024-02-15 03:00","2024-02-15 04:00","2024-02-15 05:00","2024-02-15 06:00","2024-02-15 07:00","2024-02-15 08:00","2024-02-15 09:00","2024-02-15 10:00","2024-02-15 11:00","2024-02-15 12:00","2024-02-15 13:00","2024-02-15 14:00","2024-02-15 15:00","2024-02-15 16:00","2024-02-15 17:00","2024-02-15 18:00","2024-02-15 19:00","2024-02-15 20:00","2024-02-15 21:00","2024-02-15 22:00","2024-02-15 23:00","2024-02-16 00:00","2024-02-16 01:00","2024-02-16 02:00","2024-02-16 03:00","2024-02-16 04:00","2024-02-16 05:00","2024-02-16 06:00","2024-02-16 07:00","2024-02-16 08:00","2024-02-16 09:00","2024-02-16 10:00","2024-02-16 11:00","2024-02-16 12:00","2024-02-16 13:00","2024-02-16 14:00","2024-02-16 15:00","2024-02-16 16:00","2024-02-16 17:00","2024-02-16 18:00","2024-02-16 19:00","2024-02-16 20:00","2024-02-16 21:00","2024-02-16 22:00","2024-02-16 23:00","2024-02-17 00:00","2024-02-17 01:00","2024-02-17 02:00","2024-02-17 03:00","2024-02-17 04:00","2024-02-17 05:00","2024-02-17 06:00","2024-02-17 07:00","2024-02-17 08:00","2024-02-17 09:00","2024-02-17 10:00","2024-02-17 11:00","2024-02-17 12:00","2024-02-17 13:00","2024-02-17 14:00","2024-02-17 15:00","2024-02-17 16:00","2024-02-17 17:00","2024-02-17 18:00","2024-02-17 19:00","2024-02-17 20:00","2024-02-17 21:00","2024-02-17 22:00","2024-02-17 23:00","2024-02-18 00:00","2024-02-18 01:00","2024-02-18 02:00","2024-02-18 03:00","2024-02-18 04:00","2024-02-18 05:00","2024-02-18 06:00","2024-02-18 07:00","2024-02-18 08:00","2024-02-18 09:00","2024-02-18 10:00","2024-02-18 11:00","2024-02-18 12:00","2024-02-18 13:00","2024-02-18 14:00","2024-02-18 15:00","2024-02-18 16:00","2024-02-18 17:00","2024-02-18 18:00","2024-02-18 19:00","2024-02-18 20:00","2024-02-18 21:00","2024-02-18 22:00","2024-02-18 23:00","2024-02-19 00:00","2024-02-19 01:00","2024-02-19 02:00","2024-02-19 03:00","2024-02-19 04:00","2024-02-19 05:00","2024-02-19 06:00","2024-02-19 07:00","2024-02-19 08:00","2024-02-19 09:00","2024-02-19 10:00","2024-02-19 11:00","2024-02-19 12:00","2024-02-19 13:00","2024-02-19 14:00","2024-02-19 15:00","2024-02-19 16:00","2024-02-19 17:00","2024-02-19 18:00","2024-02-19 19:00","2024-02-19 20:00","2024-02-19 21:00","2024-02-19 22:00","2024-02-19 23:00","2024-02-20 00:00","2024-02-20 01:00","2024-02-20 02:00","2024-02-20 03:00","2024-02-20 04:00","2024-02-20 05:00","2024-02-20 06:00","2024-02-20 07:00","2024-02-20 08:00","2024-02-20 09:00","2024-02-20 10:00","2024-02-20 11:00","2024-02-20 12:00","2024-02-20 13:00","2024-02-20 14:00","2024-02-20 15:00","2024-02-20 16:00","2024-02-20 17:00","2024-02-20 18:00","2024-02-20 19:00","2024-02-20 20:00","2024-02-20 21:00","2024-02-20 22:00","2024-02-20 23:00","2024-02-21 00:00","2024-02-21 01:00","2024-02-21 02:00","2024-02-21 03:00","2024-02-21 04:00","2024-02-21 05:00","2024-02-21 06:00","2024-02-21 07:00","2024-02-21 08:00","2024-02-21 09:00","2024-02-21 10:00","2024-02-21 11:00","2024-02-21 12:00","2024-02-21 13:00","2024-02-21 14:00","2024-02-21 15:00","2024-02-21 16:00","2024-02-21 17:00","2024-02-21 18:00","2024-02-21 19:00","2024-02-21 20:00","2024-02-21 21:00","2024-02-21 22:00","2024-02-21 23:00","2024-02-22 00:00","2024-02-22 01:00","2024-02-22 02:00","2024-02-22 03:00","2024-02-22 04:00","2024-02-22 05:00","2024-02-22 06:00","2024-02-22 07:00","2024-02-22 08:00","2024-02-22 09:00","2024-02-22 10:00","2024-02-22 11:00","2024-02-22 12:00","2024-02-22 13:00","2024-02-22 14:00","2024-02-22 15:00","2024-02-22 16:00","2024-02-22 17:00","2024-02-22 18:00","2024-02-22 19:00","2024-02-22 20:00","2024-02-22 21:00","2024-02-22 22:00","2024-02-22 23:00","2024-02-23 00:00","2024-02-23 01:00","2024-02-23 02:00","2024-02-23 03:00","2024-02-23 04:00","2024-02-23 05:00","2024-02-23 06:00","2024-02-23 07:00","2024-02-23 08:00","2024-02-23 09:00","2024-02-23 10:00","2024-02-23 11:00","2024-02-23 12:00","2024-02-23 13:00","2024-02-23 14:00","2024-02-23 15:00","2024-02-23 16:00","2024-02-23 17:00","2024-02-23 18:00","2024-02-23 19:00","2024-02-23 20:00","2024-02-23 21:00","2024-02-23 22:00","2024-02-23 23:00","2024-02-24 00:00","2024-02-24 01:00","2024-02-24 02:00","2024-02-24 03:00","2024-02-24 04:00","2024-02-24 05:00","2024-02-24 06:00","2024-02-24 07:00","2024-02-24 08:00","2024-02-24 09:00","2024-02-24 10:00","2024-02-24 11:00","2024-02-24 12:00","2024-02-24 13:00","2024-02-24 14:00","2024-02-24 15:00","2024-02-24 16:00","2024-02-24 17:00","2024-02-24 18:00","2024-02-24 19:00","2024-02-24 20:00","2024-02-24 21:00","2024-02-24 22:00","2024-02-24 23:00","2024-02-25 00:00","2024-02-25 01:00","2024-02-25 02:00","2024-02-25 03:00","2024-02-25 04:00","2024-02-25 05:00","2024-02-25 06:00","2024-02-25 07:00","2024-02-25 08:00","2024-02-25 09:00","2024-02-25 10:00","2024-02-25 11:00","2024-02-25 12:00","2024-02-25 13:00","2024-02-25 14:00","2024-02-25 15:00","2024-02-25 16:00","2024-02-25 17:00","2024-02-25 18:00","2024-02-25 19:00","2024-02-25 20:00","2024-02-25 21:00","2024-02-25 22:00","2024-02-25 23:00","2024-02-26 00:00","2024-02-26 01:00","2024-02-26 02:00","2024-02-26 03:00","2024-02-26 04:00","2024-02-26 05:00","2024-02-26 06:00","2024-02-26 07:00","2024-02-26 08:00","2024-02-26 09:00","2024-02-26 10:00","2024-02-26 11:00","2024-02-26 12:00","2024-02-26 13:00","2024-02-26 14:00","2024-02-26 15:00","2024-02-26 16:00","2024-02-26 17:00","2024-02-26 18:00","2024-02-26 19:00","2024-02-26 20:00","2024-02-26 21:00","2024-02-26 22:00","2024-02-26 23:00","2024-02-27 00:00","2024-02-27 01:00","2024-02-27 02:00","2024-02-27 03:00","2024-02-27 04:00","2024-02-27 05:00","2024-02-27 06:00","2024-02-27 07:00","2024-02-27 08:00","2024-02-27 09:00","2024-02-27 10:00","2024-02-27 11:00","2024-02-27 12:00","2024-02-27 13:00","2024-02-27 14:00","2024-02-27 15:00","2024-02-27 16:00","2024-02-27 17:00","2024-02-27 18:00","2024-02-27 19:00","2024-02-27 20:00","2024-02-27 21:00","2024-02-27 22:00","2024-02-27 23:00","2024-02-28 00:00","2024-02-28 01:00","2024-02-28 02:00","2024-02-28 03:00","2024-02-28 04:00","2024-02-28 05:00","2024-02-28 06:00","2024-02-28 07:00","2024-02-28 08:00","2024-02-28 09:00","2024-02-28 10:00","2024-02-28 11:00","2024-02-28 12:00","2024-02-28 13:00","2024-02-28 14:00","2024-02-28 15:00","2024-02-28 16:00","2024-02-28 17:00","2024-02-28 18:00","2024-02-28 19:00","2024-02-28 20:00","2024-02-28 21:00","2024-02-28 22:00","2024-02-28 23:00","2024-02-29 00:00","2024-02-29 01:00","2024-02-29 02:00","2024-02-29 03:00","2024-02-29 04:00","2024-02-29 05:00","2024-02-29 06:00","2024-02-29 07:00","2024-02-29 08:00","2024-02-29 09:00","2024-02-29 10:00","2024-02-29 11:00","2024-02-29 12:00","2024-02-29 13:00","2024-02-29 14:00","2024-02-29 15:00","2024-02-29 16:00","2024-02-29 17:00","2024-02-29 18:00","2024-02-29 19:00","2024-02-29 20:00","2024-02-29 21:00","2024-02-29 22:00","2024-02-29 23:00","2024-03-01 00:00","2024-03-01 01:00","2024-03-01 02:00","2024-03-01 03:00","2024-03-01 04:00","2024-03-01 05:00","2024-03-01 06:00","2024-03-01 07:00","2024-03-01 08:00","2024-03-01 09:00","2024-03-01 10:00","2024-03-01 11:00","2024-03-01 12:00","2024-03-01 13:00","2024-03-01 14:00","2024-03-01 15:00","2024-03-01 16:00","2024-03-01 17:00","2024-03-01 18:00","2024-03-01 19:00","2024-03-01 20:00","2024-03-01 21:00","2024-03-01 22:00","2024-03-01 23:00","2024-03-02 00:00","2024-03-02 01:00","2024-03-02 02:00","2024-03-02 03:00","2024-03-02 04:00","2024-03-02 05:00","2024-03-02 06:00","2024-03-02 07:00","2024-03-02 08:00","2024-03-02 09:00","2024-03-02 10:00","2024-03-02 11:00","2024-03-02 12:00","2024-03-02 13:00","2024-03-02 14:00","2024-03-02 15:00","2024-03-02 16:00","2024-03-02 17:00","2024-03-02 18:00","2024-03-02 19:00","2024-03-02 20:00","2024-03-02 21:00","2024-03-02 22:00","2024-03-02 23:00","2024-03-03 00:00","2024-03-03 01:00","2024-03-03 02:00","2024-03-03 03:00","2024-03-03 04:00","2024-03-03 05:00","2024-03-03 06:00","2024-03-03 07:00","2024-03-03 08:00","2024-03-03 09:00","2024-03-03 10:00","2024-03-03 11:00","2024-03-03 12:00","2024-03-03 13:00","2024-03-03 14:00","2024-03-03 15:00","2024-03-03 16:00","2024-03-03 17:00","2024-03-03 18:00","2024-03-03 19:00","2024-03-03 20:00","2024-03-03 21:00","2024-03-03 22:00","2024-03-03 23:00","2024-03-04 00:00","2024-03-04 01:00","2024-03-04 02:00","2024-03-04 03:00","2024-03-04 04:00","2024-03-04 05:00","2024-03-04 06:00","2024-03-04 07:00","2024-03-04 08:00","2024-03-04 09:00","2024-03-04 10:00","2024-03-04 11:00","2024-03-04 12:00","2024-03-04 13:00","2024-03-04 14:00","2024-03-05 10:00","2024-03-05 11:00","2024-03-05 12:00","2024-03-05 13:00","2024-03-05 14:00","2024-03-05 15:00","2024-03-05 16:00","2024-03-05 17:00","2024-03-05 18:00","2024-03-05 19:00","2024-03-05 20:00","2024-03-05 21:00","2024-03-05 22:00","2024-03-05 23:00","2024-03-06 00:00","2024-03-06 01:00","2024-03-06 02:00","2024-03-06 03:00","2024-03-06 04:00","2024-03-06 05:00","2024-03-06 06:00","2024-03-06 07:00","2024-03-06 08:00","2024-03-06 09:00","2024-03-06 10:00","2024-03-06 11:00","2024-03-06 12:00","2024-03-06 13:00","2024-03-06 14:00","2024-03-06 15:00","2024-03-06 16:00","2024-03-06 17:00","2024-03-06 18:00","2024-03-06 19:00","2024-03-06 20:00","2024-03-06 21:00","2024-03-06 22:00","2024-03-06 23:00","2024-03-07 00:00","2024-03-07 01:00","2024-03-07 02:00","2024-03-07 03:00","2024-03-07 04:00","2024-03-07 05:00","2024-03-07 06:00","2024-03-07 07:00","2024-03-07 08:00","2024-03-07 09:00","2024-03-07 10:00","2024-03-07 11:00","2024-03-07 12:00","2024-03-07 13:00","2024-03-07 14:00","2024-03-07 15:00","2024-03-07 16:00","2024-03-07 17:00","2024-03-07 18:00","2024-03-07 19:00","2024-03-07 20:00","2024-03-07 21:00","2024-03-07 22:00","2024-03-07 23:00","2024-03-08 00:00","2024-03-08 01:00","2024-03-08 02:00","2024-03-08 03:00","2024-03-08 04:00","2024-03-08 05:00","2024-03-08 06:00","2024-03-08 07:00","2024-03-08 08:00","2024-03-08 09:00","2024-03-08 10:00","2024-03-08 11:00","2024-03-08 12:00","2024-03-08 13:00","2024-03-08 14:00","2024-03-08 15:00","2024-03-08 16:00","2024-03-08 17:00","2024-03-08 18:00","2024-03-08 19:00","2024-03-08 20:00","2024-03-08 21:00","2024-03-08 22:00","2024-03-08 23:00","2024-03-09 00:00","2024-03-09 01:00","2024-03-09 02:00","2024-03-09 03:00","2024-03-09 04:00","2024-03-09 05:00","2024-03-09 06:00","2024-03-09 07:00","2024-03-09 08:00","2024-03-09 09:00","2024-03-09 10:00","2024-03-09 11:00","2024-03-09 12:00","2024-03-09 13:00","2024-03-09 14:00","2024-03-09 15:00","2024-03-09 16:00","2024-03-09 17:00","2024-03-09 18:00","2024-03-09 19:00","2024-03-09 20:00","2024-03-09 21:00","2024-03-09 22:00","2024-03-09 23:00","2024-03-10 00:00"]}');
|
||
}
|
||
},
|
||
//当前设备返回值
|
||
clickOptionList(e) {
|
||
this.lastChooseDevice = e
|
||
|
||
},
|
||
automaticRoll() {
|
||
var height = $(".afoot-con-for").innerHeight()
|
||
if (this.forIndex == this.warningData.length) {
|
||
this.forIndex = 0
|
||
} else {
|
||
this.forIndex = this.forIndex + 1
|
||
}
|
||
|
||
$("#afootOverflow").animate({ scrollTop: (height * this.forIndex) + 'px' })
|
||
},
|
||
|
||
listMinMouseover() {
|
||
clearInterval(this.warningInterval);
|
||
},
|
||
listMinMouseout() {
|
||
this.warningInterval = setInterval(this.automaticRoll, 5000);
|
||
},
|
||
},
|
||
};
|
||
</script>
|
||
<style lang="less">
|
||
.project-distribution-box {}
|
||
</style>
|