2024-06-24 14:38:42 +08:00
|
|
|
<template>
|
|
|
|
|
<div class="default-main device-manage" :style="{ height: pageHeight.height }">
|
|
|
|
|
<!-- @node-change="nodeClick" -->
|
|
|
|
|
<schemeTree @node-click="nodeClick" @init="nodeClick" ref="schemeTreeRef"></schemeTree>
|
|
|
|
|
<div class="device-manage-right" v-if="deviceData">
|
|
|
|
|
<el-descriptions value="small" title="方案信息" class="mb10" :column="2" border>
|
|
|
|
|
<template #extra>
|
|
|
|
|
<el-button size="small" type="primary" @click="handleOpen(0, '')">新增方案</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
<el-descriptions-item label="方案名称" width="60">
|
|
|
|
|
{{ deviceData.itemName }}
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="方案描述" width="60">
|
|
|
|
|
{{ deviceData.describe ? deviceData.describe : '/' }}
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
</el-descriptions>
|
|
|
|
|
<div class="monitor_info" v-if="deviceData.records && deviceData.records.length != 0">
|
|
|
|
|
<div class="history_title">
|
|
|
|
|
<p>测试项信息</p>
|
|
|
|
|
</div>
|
|
|
|
|
<el-tabs v-model="activeName" type="border-card">
|
|
|
|
|
<el-tab-pane
|
|
|
|
|
v-for="(item, index) in deviceData.records"
|
|
|
|
|
:label="item.itemName"
|
2024-06-27 09:39:53 +08:00
|
|
|
:name="item.id"
|
2024-06-24 14:38:42 +08:00
|
|
|
:key="index"
|
|
|
|
|
>
|
|
|
|
|
<el-descriptions value="small" class="mb10" :column="4" border>
|
|
|
|
|
<el-descriptions-item label="测试项名称" width="160">
|
|
|
|
|
{{ item.itemName }}
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="测量间隔" width="160">
|
|
|
|
|
{{ item.statisticalInterval }}分钟
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="电压等级" width="160">
|
|
|
|
|
{{
|
|
|
|
|
voltageLevelList.find(vv => {
|
|
|
|
|
return vv.id == item.voltageLevel
|
|
|
|
|
})?.name
|
|
|
|
|
}}
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="接线方式" width="160">
|
|
|
|
|
{{
|
|
|
|
|
volConTypeList.find(vv => {
|
|
|
|
|
return vv.id == item.volConType
|
|
|
|
|
})?.name
|
|
|
|
|
}}
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="最小短路容量" width="160">
|
|
|
|
|
{{ item.capacitySscmin }}MVA
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="用户协议容量" width="160">
|
|
|
|
|
{{ item.capacitySi }}MVA
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="基准短路容量" width="160">
|
|
|
|
|
{{ item.capacitySscb }}MVA
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="供电设备容量" width="160">
|
|
|
|
|
{{ item.capacitySt }}MVA
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="PT变比" width="160">
|
|
|
|
|
{{ item.pt && item.pt1 ? item.pt / item.pt1 : item.pt }}
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="CT变比" width="160">
|
|
|
|
|
{{ item.ct && item.ct1 ? item.ct / item.ct1 : item.ct }}
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="起始时间" width="160">
|
|
|
|
|
{{ item.startTime }}
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="结束时间" width="160">
|
|
|
|
|
{{ item.endTime }}
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="监测位置" width="160">
|
|
|
|
|
{{ item.location }}
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
<!-- <el-descriptions-item label="操作" width="160"> -->
|
|
|
|
|
<!-- <el-button type="primary" size="small" icon="el-icon-EditPen" @click="handleOpen(3)">
|
|
|
|
|
修改
|
|
|
|
|
</el-button> -->
|
|
|
|
|
<!-- <el-button type="primary" size="small" icon="el-icon-InfoFilled" @click="openDevice">
|
|
|
|
|
数据绑定
|
|
|
|
|
</el-button> -->
|
|
|
|
|
<!-- </el-descriptions-item> -->
|
|
|
|
|
</el-descriptions>
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
</el-tabs>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="history_title">
|
|
|
|
|
<p>历史趋势</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="history_header">
|
|
|
|
|
<el-form :model="searchForm" class="history_select">
|
|
|
|
|
<el-form-item label="统计指标">
|
|
|
|
|
<el-select @change="init" v-model="searchForm.index" placeholder="请选择统计指标">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in indexOptions"
|
|
|
|
|
:key="item.id"
|
|
|
|
|
:label="item.name"
|
|
|
|
|
:value="item.id"
|
|
|
|
|
></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
2024-06-27 09:39:53 +08:00
|
|
|
<el-form-item label="谐波次数" v-if="countOptions.length != 0">
|
|
|
|
|
<el-select
|
|
|
|
|
@change="init"
|
|
|
|
|
v-model="searchForm.count"
|
|
|
|
|
multiple
|
|
|
|
|
:multiple-limit="3"
|
|
|
|
|
placeholder="请选择谐波次数"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in countOptions"
|
|
|
|
|
:key="item.id"
|
|
|
|
|
:label="item.name"
|
|
|
|
|
:value="item.id"
|
|
|
|
|
></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
2024-06-24 14:38:42 +08:00
|
|
|
<el-form-item label="值类型">
|
|
|
|
|
<el-select @change="init" v-model="searchForm.type" placeholder="请选择值类型">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in typeOptions"
|
|
|
|
|
:key="item.id"
|
|
|
|
|
:label="item.name"
|
|
|
|
|
:value="item.id"
|
|
|
|
|
></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
<div class="history_searchBtn">
|
|
|
|
|
<!-- <el-button type="primary" icon="el-icon-Search" @click="handleSearch">查询</el-button> -->
|
2024-06-27 09:39:53 +08:00
|
|
|
<el-button
|
|
|
|
|
v-if="historyDataList.length != 0"
|
|
|
|
|
type="primary"
|
|
|
|
|
size="small"
|
|
|
|
|
icon="el-icon-Download"
|
|
|
|
|
@click="handleExport"
|
|
|
|
|
>
|
2024-06-24 14:38:42 +08:00
|
|
|
导出
|
2024-06-27 09:39:53 +08:00
|
|
|
</el-button>
|
2024-06-24 14:38:42 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- <div class="title">
|
|
|
|
|
10KV 母线_监测点 相电压有效值
|
|
|
|
|
</div> -->
|
|
|
|
|
<div class="history_chart" v-loading="loading" v-show="echartsData">
|
|
|
|
|
<MyEchart ref="historyChart" :isExport="true" :options="echartsData" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<el-empty v-else description="请选择设备" class="device-manage-right" />
|
|
|
|
|
<popup ref="dialogRef" @onSubmit="refreshTree" />
|
|
|
|
|
<!-- <device ref="deviceRef"></device> -->
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
|
import popup from './components/popup.vue'
|
|
|
|
|
import schemeTree from './components/schemeTree.vue'
|
|
|
|
|
import { mainHeight } from '@/utils/layout'
|
|
|
|
|
import { queryByCode, queryByid, queryCsDictTree } from '@/api/system-boot/dictTree'
|
|
|
|
|
import { ref, reactive, onMounted, provide, nextTick } from 'vue'
|
|
|
|
|
import { ElMessage } from 'element-plus'
|
|
|
|
|
import MyEchart from '@/components/echarts/MyEchart.vue'
|
|
|
|
|
import { getTestRecordInfo, getHistoryTrend } from '@/api/cs-device-boot/planData'
|
|
|
|
|
import { useDictData } from '@/stores/dictData'
|
|
|
|
|
import device from './components/device.vue'
|
|
|
|
|
import { queryStatistical } from '@/api/system-boot/csstatisticalset'
|
|
|
|
|
import * as echarts from 'echarts'
|
|
|
|
|
const dictData = useDictData()
|
|
|
|
|
defineOptions({
|
|
|
|
|
name: 'govern/device/manage'
|
|
|
|
|
})
|
|
|
|
|
//电压等级
|
|
|
|
|
const voltageLevelList = dictData.getBasicData('Dev_Voltage')
|
|
|
|
|
//接线方式
|
|
|
|
|
const volConTypeList = dictData.getBasicData('Dev_Connect')
|
|
|
|
|
|
|
|
|
|
//值类型
|
|
|
|
|
|
|
|
|
|
const pageHeight = mainHeight(20)
|
|
|
|
|
const loading = ref(true)
|
|
|
|
|
const searchForm = ref({})
|
|
|
|
|
const typeOptions = [
|
|
|
|
|
{
|
|
|
|
|
name: '平均值',
|
|
|
|
|
id: 'avg'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: '最大值',
|
|
|
|
|
id: 'max'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: '最小值',
|
|
|
|
|
id: 'min'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'CP95值',
|
|
|
|
|
id: 'cp95'
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
searchForm.value = {
|
|
|
|
|
index: '',
|
2024-06-27 09:39:53 +08:00
|
|
|
type: typeOptions[0].id,
|
|
|
|
|
count: []
|
2024-06-24 14:38:42 +08:00
|
|
|
}
|
|
|
|
|
//统计指标
|
|
|
|
|
const indexOptions: any = ref([])
|
2024-06-27 09:39:53 +08:00
|
|
|
//谐波次数
|
|
|
|
|
const countOptions: any = ref([])
|
2024-06-24 14:38:42 +08:00
|
|
|
// Harmonic_Type
|
|
|
|
|
// portable-harmonic
|
|
|
|
|
const legendDictList: any = ref([])
|
|
|
|
|
queryByCode('portable-harmonic').then(res => {
|
|
|
|
|
queryCsDictTree(res.data.id).then(item => {
|
|
|
|
|
indexOptions.value = item.data
|
|
|
|
|
searchForm.value.index = indexOptions.value[0].id
|
|
|
|
|
})
|
|
|
|
|
queryStatistical(res.data.id).then(vv => {
|
|
|
|
|
legendDictList.value = vv.data
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
const activeName: any = ref()
|
|
|
|
|
const deviceData: any = ref([])
|
|
|
|
|
const schemeTreeRef = ref()
|
2024-06-27 09:39:53 +08:00
|
|
|
//历史趋势devId
|
|
|
|
|
const historyDevId: any = ref('')
|
2024-06-24 14:38:42 +08:00
|
|
|
const chartTitle: any = ref('')
|
|
|
|
|
const nodeClick = async (e: anyObj) => {
|
|
|
|
|
loading.value = true
|
|
|
|
|
deviceData.value = []
|
2024-06-27 09:39:53 +08:00
|
|
|
historyDevId.value = e.children && e.children.length != 0 ? e.children[0].id : e.id
|
2024-06-24 14:38:42 +08:00
|
|
|
let id = e.pid ? e.pid : e.id
|
2024-06-27 09:39:53 +08:00
|
|
|
console.log(id, e, '单个点击')
|
2024-06-24 14:38:42 +08:00
|
|
|
//查询测试项信息
|
|
|
|
|
try {
|
|
|
|
|
await getTestRecordInfo(id).then(res => {
|
|
|
|
|
deviceData.value = res.data
|
|
|
|
|
loading.value = false
|
2024-06-27 09:39:53 +08:00
|
|
|
if (res.data.records.length == 1) {
|
|
|
|
|
activeName.value = res.data.records[0].id
|
|
|
|
|
} else {
|
|
|
|
|
res.data.records.map((item: any) => {
|
|
|
|
|
//多层
|
|
|
|
|
console.log(item.id, e.id, '88888888888888888888')
|
|
|
|
|
if (item.id == e.id) {
|
|
|
|
|
activeName.value = item.id
|
|
|
|
|
return
|
|
|
|
|
console.log('着调了', activeName.value, item.id)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-24 14:38:42 +08:00
|
|
|
schemeTreeRef.value.getPlanData(deviceData.value)
|
|
|
|
|
})
|
|
|
|
|
} catch (error) {
|
|
|
|
|
loading.value = false
|
|
|
|
|
}
|
|
|
|
|
init()
|
|
|
|
|
}
|
|
|
|
|
// const deviceRef = ref()
|
|
|
|
|
// const openDevice = () => {
|
|
|
|
|
// deviceRef.value.open(deviceData.value.records[0].id)
|
|
|
|
|
// }
|
|
|
|
|
const dialogRef = ref()
|
|
|
|
|
const handleOpen = (val: any, id: any) => {
|
|
|
|
|
// deviceData.value.records[0].id
|
|
|
|
|
dialogRef.value.open(val, '')
|
|
|
|
|
}
|
|
|
|
|
const echartsData = ref<any>(null)
|
|
|
|
|
//加载echarts图表
|
|
|
|
|
//历史趋势数据
|
|
|
|
|
const historyDataList: any = ref([])
|
|
|
|
|
const refreshTree = () => {
|
|
|
|
|
schemeTreeRef.value.getTreeList()
|
|
|
|
|
}
|
2024-06-27 09:39:53 +08:00
|
|
|
const range = (start: any, end: any, step: any) => {
|
|
|
|
|
return Array.from({ length: (end - start) / step + 1 }, (_, i) => start + i * step)
|
|
|
|
|
}
|
2024-06-24 14:38:42 +08:00
|
|
|
const init = async () => {
|
2024-06-27 09:39:53 +08:00
|
|
|
//选择指标的时候切换legend内容和data数据
|
|
|
|
|
let list: any = []
|
|
|
|
|
legendDictList.value?.selectedList?.map((item: any) => {
|
|
|
|
|
if (item.dataType == searchForm.value.index) {
|
|
|
|
|
list.push(item.eleEpdPqdVOS)
|
|
|
|
|
countOptions.value = []
|
|
|
|
|
item.eleEpdPqdVOS.map((vv: any) => {
|
|
|
|
|
if (vv.harmStart && vv.harmEnd) {
|
|
|
|
|
let list = []
|
|
|
|
|
range(0, 0, 0)
|
|
|
|
|
list = range(vv.harmStart, vv.harmEnd, 2)
|
|
|
|
|
list.map((item: any) => {
|
|
|
|
|
countOptions.value.push({
|
|
|
|
|
id: item,
|
|
|
|
|
name: item
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
} else {
|
|
|
|
|
countOptions.value = []
|
|
|
|
|
}
|
2024-06-24 14:38:42 +08:00
|
|
|
})
|
2024-06-27 09:39:53 +08:00
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
if (historyDevId.value) {
|
|
|
|
|
//查询历史趋势
|
|
|
|
|
historyDataList.value = []
|
|
|
|
|
loading.value = true
|
|
|
|
|
let middleTitle = ''
|
|
|
|
|
if (
|
|
|
|
|
deviceData.value.records &&
|
|
|
|
|
deviceData.value.records.length != 0 &&
|
|
|
|
|
deviceData.value.records.find((item: any) => {
|
|
|
|
|
return item.id == activeName.value
|
|
|
|
|
})?.itemName
|
|
|
|
|
) {
|
|
|
|
|
middleTitle = deviceData.value.records.find((item: any) => {
|
|
|
|
|
return item.id == activeName.value
|
|
|
|
|
})?.itemName
|
|
|
|
|
} else {
|
|
|
|
|
middleTitle = ''
|
|
|
|
|
}
|
|
|
|
|
chartTitle.value =
|
|
|
|
|
deviceData.value.itemName +
|
|
|
|
|
' ' +
|
|
|
|
|
middleTitle +
|
|
|
|
|
' ' +
|
|
|
|
|
indexOptions.value.find(item => {
|
|
|
|
|
return item.id == searchForm.value.index
|
|
|
|
|
})?.name
|
|
|
|
|
let obj = {
|
|
|
|
|
devId: historyDevId.value,
|
|
|
|
|
statisticalId: searchForm.value.index,
|
|
|
|
|
valueType: searchForm.value.type,
|
|
|
|
|
frequency: ''
|
|
|
|
|
}
|
|
|
|
|
if (countOptions.value.length != 0 && searchForm.value.count.length != 0) {
|
|
|
|
|
obj.frequency = JSON.parse(JSON.stringify(searchForm.value.count.join(',')))
|
|
|
|
|
} else {
|
|
|
|
|
searchForm.value.count = []
|
|
|
|
|
delete obj.frequency
|
|
|
|
|
}
|
|
|
|
|
try {
|
|
|
|
|
await getHistoryTrend(obj)
|
2024-06-24 14:38:42 +08:00
|
|
|
.then(res => {
|
|
|
|
|
if (res.code == 'A0000') {
|
2024-06-27 09:39:53 +08:00
|
|
|
console.log(res, '趋势图')
|
2024-06-24 14:38:42 +08:00
|
|
|
historyDataList.value = res.data
|
|
|
|
|
echartsData.value = null
|
|
|
|
|
//icon图标替换legend图例
|
|
|
|
|
const iconThree =
|
|
|
|
|
'path://M512 85.333333c235.637333 0 426.666667 191.029333 426.666667 426.666667S747.637333 938.666667 512 938.666667 85.333333 747.637333 85.333333 512 276.362667 85.333333 512 85.333333z m214.592 318.677334a32 32 0 0 0-45.248 0.064L544.736 541.066667l-81.792-89.109334a32 32 0 0 0-46.613333-0.576l-119.36 123.733334a32 32 0 1 0 46.058666 44.437333l95.754667-99.264 81.418667 88.704a32 32 0 0 0 46.24 0.96l160.213333-160.693333a32 32 0 0 0-0.064-45.248z'
|
|
|
|
|
const iconDanger =
|
|
|
|
|
'path://M1001.661867 796.544c48.896 84.906667 7.68 157.013333-87.552 157.013333H110.781867c-97.834667 0-139.050667-69.504-90.112-157.013333l401.664-666.88c48.896-87.552 128.725333-87.552 177.664 0l401.664 666.88zM479.165867 296.533333v341.333334a32 32 0 1 0 64 0v-341.333334a32 32 0 1 0-64 0z m0 469.333334v42.666666a32 32 0 1 0 64 0v-42.666666a32 32 0 1 0-64 0z'
|
|
|
|
|
|
|
|
|
|
let xAxis: any[] = []
|
2024-06-27 09:39:53 +08:00
|
|
|
let unit = ''
|
|
|
|
|
historyDataList.value.map((item: any) => {
|
2024-06-24 14:38:42 +08:00
|
|
|
xAxis.push(item.time)
|
2024-06-27 09:39:53 +08:00
|
|
|
unit = item.unit
|
2024-06-24 14:38:42 +08:00
|
|
|
})
|
|
|
|
|
echartsData.value = {
|
|
|
|
|
options: {
|
|
|
|
|
title: [
|
|
|
|
|
{
|
|
|
|
|
left: 'center',
|
|
|
|
|
text: chartTitle.value
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
toolbox: {
|
|
|
|
|
feature: {
|
2024-06-27 09:39:53 +08:00
|
|
|
// saveAsImage: {
|
|
|
|
|
// title: '保存'
|
|
|
|
|
// },
|
|
|
|
|
// dataView: { readOnly: false },
|
|
|
|
|
// myTool1: {
|
|
|
|
|
// show: true,
|
|
|
|
|
// title: '下载数据',
|
|
|
|
|
// icon: 'path://M18 20.288L21.288 17l-.688-.688l-2.1 2.1v-4.887h-1v4.887l-2.1-2.1l-.688.688zM14.5 23.5v-1h7v1zm-10-4v-17H13L18.5 8v3.14h-1V8.5h-5v-5h-7v15h6.615v1zm1-1v-15z',
|
|
|
|
|
// onclick: function () {
|
|
|
|
|
// setTimeout(() => {
|
|
|
|
|
// // 使用这个函数转换数据为CSV格式
|
|
|
|
|
// let csv = ''
|
|
|
|
|
// const list = echartsData.value.options.series
|
|
|
|
|
// list.map((item: any, key: any) => {
|
|
|
|
|
// csv = convertToCSV(item.data, key)
|
|
|
|
|
// })
|
|
|
|
|
// // 如果你想提供下载链接
|
|
|
|
|
// const blob = new Blob([csv], { type: 'text/csv;charset=utf-8;' })
|
|
|
|
|
// const link = document.createElement('a')
|
|
|
|
|
// link.href = URL.createObjectURL(blob)
|
|
|
|
|
// link.download = '历史趋势.csv'
|
|
|
|
|
// link.click()
|
|
|
|
|
// function convertToCSV(data: any, key: any) {
|
|
|
|
|
// console.log(data, key, '0000000')
|
|
|
|
|
// // 添加列头
|
|
|
|
|
// let title = '时间,'
|
|
|
|
|
// list.map((item: any, index: any) => {
|
|
|
|
|
// // title+=item.name+','
|
|
|
|
|
// index == list.length - 1
|
|
|
|
|
// ? (title += `${item.name}\n`)
|
|
|
|
|
// : (title += `${item.name},`)
|
|
|
|
|
// })
|
|
|
|
|
// console.log(title, '99999999999')
|
|
|
|
|
// let csv = ''
|
|
|
|
|
// // csv += 'x,y\n'
|
|
|
|
|
// csv = title
|
|
|
|
|
// // 遍历数据并添加到CSV字符串中
|
|
|
|
|
// let arr = []
|
|
|
|
|
// arr[key] = data
|
|
|
|
|
// console.log(list[0].data.length, '77777777777')
|
|
|
|
|
// list[0].data.map((vv:any,indexs:any)=>{
|
|
|
|
|
// if (list.length==3) {
|
|
|
|
|
// csv += `${xAxis[indexs]},${list[0].data[indexs]},${list[1].data[indexs]},${list[2].data[indexs]}\n`
|
|
|
|
|
// }
|
|
|
|
|
// })
|
|
|
|
|
// // list[key].data.map((item: any, index: any) => {
|
|
|
|
|
// // if (key == 0) {
|
|
|
|
|
// // csv += `${xAxis[index]},${item},\n`
|
|
|
|
|
// // }
|
|
|
|
|
// // if (key == list.length - 1) {
|
|
|
|
|
// // csv += `${item}\n`
|
|
|
|
|
// // }
|
|
|
|
|
// // if (key != 0 && key != list.length - 1) {
|
|
|
|
|
// // csv += `${item},`
|
|
|
|
|
// // }
|
|
|
|
|
// // })
|
|
|
|
|
// return csv
|
|
|
|
|
// }
|
|
|
|
|
// }, 10)
|
|
|
|
|
// }
|
|
|
|
|
// }
|
2024-06-24 14:38:42 +08:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
tooltip: {
|
|
|
|
|
trigger: 'axis',
|
|
|
|
|
axisPointer: {
|
|
|
|
|
type: 'shadow'
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
legend: {
|
|
|
|
|
//legend使用iconfont图标
|
2024-06-27 09:39:53 +08:00
|
|
|
data: [],
|
2024-06-24 14:38:42 +08:00
|
|
|
top: 5,
|
|
|
|
|
right: 80,
|
|
|
|
|
itemWidth: 20,
|
|
|
|
|
itemHeight: 10,
|
|
|
|
|
itemGap: 15
|
|
|
|
|
},
|
|
|
|
|
grid: {
|
|
|
|
|
left: '1%',
|
|
|
|
|
right: '5%',
|
|
|
|
|
bottom: '5%',
|
|
|
|
|
top: '10%',
|
|
|
|
|
containLabel: true
|
|
|
|
|
},
|
|
|
|
|
xAxis: [
|
|
|
|
|
{
|
|
|
|
|
type: 'category',
|
|
|
|
|
name: '时间',
|
|
|
|
|
axisLabel: {
|
|
|
|
|
color: '#A9AEB2',
|
|
|
|
|
fontSize: 12
|
|
|
|
|
},
|
|
|
|
|
data: xAxis,
|
|
|
|
|
axisLine: {
|
|
|
|
|
lineStyle: {
|
|
|
|
|
color: '#43485E'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
yAxis: [
|
|
|
|
|
{
|
|
|
|
|
type: 'value',
|
2024-06-27 09:39:53 +08:00
|
|
|
name: unit,
|
2024-06-24 14:38:42 +08:00
|
|
|
axisLabel: {
|
|
|
|
|
color: '#A9AEB2',
|
|
|
|
|
fontSize: 12
|
|
|
|
|
},
|
|
|
|
|
axisTick: {
|
|
|
|
|
show: true
|
|
|
|
|
},
|
|
|
|
|
axisLine: {
|
|
|
|
|
show: true,
|
|
|
|
|
lineStyle: {
|
|
|
|
|
// color: 'white'
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
nameTextStyle: {
|
|
|
|
|
color: '#A9AEB2',
|
|
|
|
|
fontSize: '12'
|
|
|
|
|
},
|
|
|
|
|
splitLine: {
|
|
|
|
|
show: false,
|
|
|
|
|
lineStyle: {
|
|
|
|
|
color: ['#43485E'],
|
|
|
|
|
width: 1,
|
|
|
|
|
type: 'solid'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-06-27 09:39:53 +08:00
|
|
|
],
|
|
|
|
|
series: []
|
2024-06-24 14:38:42 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//颜色数组
|
|
|
|
|
const colorList = ['#DAA521', '#2E8B58', '#A5292A', '#d81e06']
|
|
|
|
|
list.map((item, index) => {
|
2024-06-27 09:39:53 +08:00
|
|
|
item.map((vv: any, indexs: any) => {
|
|
|
|
|
//处理legend
|
|
|
|
|
if (historyDataList.value.length != 0) {
|
|
|
|
|
echartsData.value.options.legend.data.push({
|
|
|
|
|
name: vv.showName,
|
|
|
|
|
icon: iconThree
|
2024-06-24 14:38:42 +08:00
|
|
|
})
|
2024-06-27 09:39:53 +08:00
|
|
|
}
|
|
|
|
|
//series数据
|
|
|
|
|
echartsData.value.options.series.push({
|
|
|
|
|
name: vv.showName,
|
|
|
|
|
type: 'line',
|
|
|
|
|
smooth: true,
|
|
|
|
|
symbol: 'none',
|
|
|
|
|
emphasis: {
|
|
|
|
|
focus: 'series'
|
|
|
|
|
},
|
|
|
|
|
itemStyle: {
|
|
|
|
|
normal: {
|
|
|
|
|
color: colorList[indexs],
|
|
|
|
|
lineStyle: {
|
|
|
|
|
color: colorList[indexs]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
data: historyDataList.value
|
|
|
|
|
.map((kk: any) => {
|
|
|
|
|
if (kk.statisticalName === vv.name) {
|
|
|
|
|
return kk.statisticalData
|
|
|
|
|
} else {
|
|
|
|
|
return ''
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.filter((kk: any) => kk !== '')
|
|
|
|
|
})
|
2024-06-24 14:38:42 +08:00
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
loading.value = false
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(error => {
|
|
|
|
|
loading.value = false
|
|
|
|
|
})
|
|
|
|
|
} catch (error) {
|
|
|
|
|
loading.value = false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//搜素
|
|
|
|
|
const handleSearch = () => {
|
|
|
|
|
console.log(searchForm.value, '搜索')
|
|
|
|
|
init()
|
|
|
|
|
}
|
|
|
|
|
//导出
|
|
|
|
|
const historyChart = ref()
|
|
|
|
|
// const chart: any = ref(null)
|
|
|
|
|
// chart.value = echarts.init(historyChart.value)
|
|
|
|
|
const handleExport = () => {
|
2024-06-27 09:39:53 +08:00
|
|
|
setTimeout(() => {
|
|
|
|
|
let xAxis: any = []
|
|
|
|
|
historyDataList.value.map((item: any) => {
|
|
|
|
|
xAxis.push(item.time)
|
|
|
|
|
})
|
|
|
|
|
// 使用这个函数转换数据为CSV格式
|
|
|
|
|
let csv = ''
|
|
|
|
|
const list = echartsData.value.options.series
|
|
|
|
|
list.map((item: any, key: any) => {
|
|
|
|
|
csv = convertToCSV(item.data, key)
|
|
|
|
|
})
|
|
|
|
|
// 如果你想提供下载链接
|
|
|
|
|
const blob = new Blob([csv], { type: 'text/csv;charset=utf-8;' })
|
|
|
|
|
const link = document.createElement('a')
|
|
|
|
|
link.href = URL.createObjectURL(blob)
|
|
|
|
|
link.download = '历史趋势.csv'
|
2024-06-24 14:38:42 +08:00
|
|
|
link.click()
|
2024-06-27 09:39:53 +08:00
|
|
|
function convertToCSV(data: any, key: any) {
|
|
|
|
|
console.log(data, key, '0000000')
|
|
|
|
|
// 添加列头
|
|
|
|
|
let title = '时间,'
|
|
|
|
|
list.map((item: any, index: any) => {
|
|
|
|
|
// title+=item.name+','
|
|
|
|
|
index == list.length - 1 ? (title += `${item.name}\n`) : (title += `${item.name},`)
|
|
|
|
|
})
|
|
|
|
|
let csv = ''
|
|
|
|
|
// csv += 'x,y\n'
|
|
|
|
|
csv = title
|
|
|
|
|
// 遍历数据并添加到CSV字符串中
|
|
|
|
|
let arr = []
|
|
|
|
|
arr[key] = data
|
|
|
|
|
let str = ''
|
|
|
|
|
list.map((item: any, index: any) => {
|
|
|
|
|
// str += '${list[' + index + '].data[indexs]},'
|
|
|
|
|
str += `${list[index].data['indexs']}`
|
|
|
|
|
})
|
|
|
|
|
console.log(str, 'strstrstrstrstrsr')
|
|
|
|
|
const listLength = list.length
|
|
|
|
|
list[0].data.map((vv: any, indexs: any) => {
|
|
|
|
|
switch (listLength) {
|
|
|
|
|
case 1:
|
|
|
|
|
csv += `${xAxis[indexs]},${list[0].data[indexs]}\n`
|
|
|
|
|
break
|
|
|
|
|
case 2:
|
|
|
|
|
csv += `${xAxis[indexs]},${list[0].data[indexs]},${list[1].data[indexs]}\n`
|
|
|
|
|
break
|
|
|
|
|
case 3:
|
|
|
|
|
csv += `${xAxis[indexs]},${list[0].data[indexs]},${list[1].data[indexs]},${list[2].data[indexs]}\n`
|
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// if (list.length == 3) {
|
|
|
|
|
// // ${list[0].data[indexs]},${list[1].data[indexs]},${list[2].data[indexs]}
|
|
|
|
|
// csv +=`${list[0].data[indexs]},${list[1].data[indexs]},${list[2].data[indexs]}`
|
|
|
|
|
// }
|
|
|
|
|
})
|
|
|
|
|
return csv
|
|
|
|
|
}
|
|
|
|
|
}, 10)
|
|
|
|
|
// historyChart.value.handleExport(historyDataList.value)
|
2024-06-24 14:38:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
onMounted(() => {})
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.device-manage {
|
|
|
|
|
display: flex;
|
|
|
|
|
height: calc(100vh - 100px);
|
|
|
|
|
|
|
|
|
|
// overflow-y: auto;
|
|
|
|
|
&-right {
|
|
|
|
|
// overflow: auto;
|
|
|
|
|
flex: 1;
|
|
|
|
|
padding: 10px 10px 10px 0;
|
|
|
|
|
|
|
|
|
|
.el-descriptions__header {
|
|
|
|
|
height: 36px;
|
|
|
|
|
margin-bottom: 7px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.device-manage-right {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
flex: 1 !important;
|
|
|
|
|
height: calc(100vh - 135px);
|
|
|
|
|
padding: 10px 10px 10px 10px;
|
|
|
|
|
border: 2px solid #eeeeee;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
|
|
.el-descriptions__header {
|
|
|
|
|
height: 36px;
|
|
|
|
|
margin-bottom: 7px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history_title {
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
|
|
p {
|
|
|
|
|
height: 32px;
|
|
|
|
|
line-height: 32px;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.monitor_info {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history_header {
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
|
|
.history_select {
|
|
|
|
|
width: 65%;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
|
|
|
|
|
.el-select {
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history_searchBtn {
|
|
|
|
|
flex: 1;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history_chart {
|
|
|
|
|
width: 100%;
|
|
|
|
|
min-height: calc(100vh - 600px) !important;
|
|
|
|
|
flex: 1;
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ::v-deep .el-select {
|
|
|
|
|
// width: 200px !important;
|
|
|
|
|
// }
|
|
|
|
|
</style>
|