2024-08-05 18:07:23 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<div class="default-main online">
|
|
|
|
|
|
<div class="online_header">
|
2024-12-27 08:47:47 +08:00
|
|
|
|
<TableHeader date-picker ref="tableHeaderRef" >
|
2024-08-05 18:07:23 +08:00
|
|
|
|
<template #select>
|
|
|
|
|
|
<el-form-item label="统计类型:">
|
|
|
|
|
|
<el-select
|
|
|
|
|
|
v-model="formData.statisticalType"
|
|
|
|
|
|
placeholder="请选择统计类型"
|
|
|
|
|
|
value-key="id"
|
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
|
>
|
|
|
|
|
|
<el-option
|
|
|
|
|
|
v-for="item in classificationData"
|
|
|
|
|
|
:key="item.id"
|
|
|
|
|
|
:label="item.name"
|
|
|
|
|
|
:value="item"
|
|
|
|
|
|
></el-option>
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="区域选择:">
|
|
|
|
|
|
<!-- <el-select ref="select1" v-model="deptName" placeholder="请选择所属部门区域" style="width: 100%">
|
|
|
|
|
|
<el-option :value="formData.deptIndex" style="height: auto"> -->
|
|
|
|
|
|
<!-- {{ formData.deptIndex }} -->
|
|
|
|
|
|
<el-cascader
|
|
|
|
|
|
v-model="formData.deptIndex"
|
|
|
|
|
|
:props="defaultProps"
|
|
|
|
|
|
:options="treeData"
|
|
|
|
|
|
clearable
|
|
|
|
|
|
filterable
|
|
|
|
|
|
collapse-tags
|
|
|
|
|
|
placeholder="请选择区域"
|
|
|
|
|
|
/>
|
|
|
|
|
|
<!-- <el-tree
|
|
|
|
|
|
ref="tree"
|
|
|
|
|
|
v-model="formData.deptName"
|
|
|
|
|
|
:data="treeData"
|
|
|
|
|
|
node-key="id"
|
|
|
|
|
|
accordion
|
|
|
|
|
|
:default-expanded-keys="idArr"
|
|
|
|
|
|
:props="defaultProps"
|
|
|
|
|
|
@node-click="handleNodeClick"
|
|
|
|
|
|
>
|
|
|
|
|
|
<template #default="{ node, data }">
|
|
|
|
|
|
<span :title="data.name">{{ data?.name }}</span>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-tree> -->
|
|
|
|
|
|
<!-- </el-option>
|
|
|
|
|
|
</el-select> -->
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="电压等级:">
|
|
|
|
|
|
<el-select
|
|
|
|
|
|
v-model="formData.scale"
|
|
|
|
|
|
multiple
|
|
|
|
|
|
collapse-tags
|
|
|
|
|
|
clearable
|
|
|
|
|
|
placeholder="请选择电压等级"
|
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
|
value-key="id"
|
|
|
|
|
|
>
|
|
|
|
|
|
<el-option
|
|
|
|
|
|
v-for="item in voltageleveloption"
|
|
|
|
|
|
:key="item.id"
|
|
|
|
|
|
:label="item.name"
|
|
|
|
|
|
:value="item"
|
|
|
|
|
|
></el-option>
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="终端厂家:">
|
|
|
|
|
|
<el-select
|
|
|
|
|
|
v-model="formData.manufacturer"
|
|
|
|
|
|
multiple
|
|
|
|
|
|
collapse-tags
|
|
|
|
|
|
clearable
|
|
|
|
|
|
placeholder="请选择终端厂家"
|
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
|
value-key="id"
|
|
|
|
|
|
>
|
|
|
|
|
|
<el-option
|
|
|
|
|
|
v-for="(item, index) in terminaloption"
|
|
|
|
|
|
:key="index"
|
|
|
|
|
|
:label="item.name"
|
|
|
|
|
|
:value="item"
|
|
|
|
|
|
></el-option>
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="干扰源类型:">
|
|
|
|
|
|
<el-select
|
|
|
|
|
|
v-model="formData.loadType"
|
|
|
|
|
|
multiple
|
|
|
|
|
|
collapse-tags
|
|
|
|
|
|
clearable
|
|
|
|
|
|
placeholder="请选择干扰源类型"
|
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
|
value-key="id"
|
|
|
|
|
|
>
|
|
|
|
|
|
<el-option
|
|
|
|
|
|
v-for="(item, index) in interfereoption"
|
|
|
|
|
|
:key="index"
|
|
|
|
|
|
:label="item.name"
|
|
|
|
|
|
:value="item"
|
|
|
|
|
|
></el-option>
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</TableHeader>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="online_main">
|
|
|
|
|
|
<el-tabs v-model="activeName" type="border-card" @tab-click="handleClick">
|
2024-08-08 10:09:50 +08:00
|
|
|
|
<el-tab-pane :name="0" :lazy="true" label="终端在线率列表">
|
2024-08-05 18:07:23 +08:00
|
|
|
|
<Table
|
|
|
|
|
|
ref="tableRef"
|
|
|
|
|
|
:tree-config="{ transform: true, parentField: 'pid' }"
|
|
|
|
|
|
:scroll-y="{ enabled: true }"
|
|
|
|
|
|
v-if="activeName == 0"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-tab-pane>
|
2024-08-08 10:09:50 +08:00
|
|
|
|
<el-tab-pane :name="1" :lazy="true" label="终端在线率图表">
|
|
|
|
|
|
<charts v-if="activeName == 1" ref="chartsRef" />
|
2024-08-05 18:07:23 +08:00
|
|
|
|
</el-tab-pane>
|
|
|
|
|
|
</el-tabs>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
|
|
import { ref, onMounted, watch } from 'vue'
|
|
|
|
|
|
import { useDictData } from '@/stores/dictData'
|
|
|
|
|
|
import DatePicker from '@/components/form/datePicker/index.vue'
|
|
|
|
|
|
import { getAreaDept } from '@/api/harmonic-boot/area'
|
|
|
|
|
|
import TableHeader from '@/components/table/header/index.vue'
|
|
|
|
|
|
import TableStore from '@/utils/tableStore'
|
|
|
|
|
|
import Table from '@/components/table/index.vue'
|
2024-08-07 14:26:09 +08:00
|
|
|
|
import charts from './components/charts.vue'
|
2024-08-05 18:07:23 +08:00
|
|
|
|
const tableRef = ref()
|
2024-08-07 14:26:09 +08:00
|
|
|
|
const chartsRef = ref()
|
2024-08-05 18:07:23 +08:00
|
|
|
|
const dictData = useDictData()
|
|
|
|
|
|
//字典获取电压等级
|
|
|
|
|
|
const voltageleveloption = dictData.getBasicData('Dev_Voltage_Stand')
|
|
|
|
|
|
//字典获取终端厂家
|
|
|
|
|
|
const terminaloption = dictData.getBasicData('Dev_Manufacturers')
|
|
|
|
|
|
//字典获取干扰源类型
|
|
|
|
|
|
const interfereoption = dictData.getBasicData('Interference_Source')
|
|
|
|
|
|
//字典获取统计类型
|
2024-08-07 14:26:09 +08:00
|
|
|
|
const classificationData = dictData.getBasicData('Statistical_Type', ['Report_Type'])
|
2024-08-05 18:07:23 +08:00
|
|
|
|
//调用区域接口获取区域
|
|
|
|
|
|
const treeData = ref([])
|
|
|
|
|
|
const idArr = ref([])
|
|
|
|
|
|
const activeName = ref(0)
|
|
|
|
|
|
const getTreeData = async () => {
|
|
|
|
|
|
await getAreaDept().then(res => {
|
|
|
|
|
|
var data = res.data
|
|
|
|
|
|
data.forEach(element => {
|
|
|
|
|
|
idArr.value.push(element.id)
|
|
|
|
|
|
})
|
|
|
|
|
|
treeData.value = JSON.parse(JSON.stringify(res.data))
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
getTreeData()
|
|
|
|
|
|
|
|
|
|
|
|
const formData = ref({
|
|
|
|
|
|
statisticalType: classificationData[0], //统计类型
|
|
|
|
|
|
deptIndex: treeData.value[0]?.id, //区域选择
|
|
|
|
|
|
scale: voltageleveloption, //电压等级
|
|
|
|
|
|
manufacturer: terminaloption, //终端厂家
|
|
|
|
|
|
loadType: interfereoption //干扰源类型
|
|
|
|
|
|
// searchBeginTime: '',
|
|
|
|
|
|
// searchEndTime: ''
|
|
|
|
|
|
})
|
|
|
|
|
|
formData.value.deptIndex = treeData.value[0]?.id
|
|
|
|
|
|
const defaultProps = ref({
|
|
|
|
|
|
label: 'name',
|
|
|
|
|
|
value: 'id',
|
|
|
|
|
|
checkStrictly: true,
|
|
|
|
|
|
emitPath: false,
|
|
|
|
|
|
expandTrigger: 'click' as const
|
|
|
|
|
|
})
|
2024-08-08 10:09:50 +08:00
|
|
|
|
const handleClick = (tab: any, e: any) => {
|
2024-08-05 18:07:23 +08:00
|
|
|
|
// if(activeName.value===1){
|
|
|
|
|
|
tableStore.index()
|
|
|
|
|
|
// }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// const datePickerRef = ref()
|
|
|
|
|
|
const tableHeaderRef = ref()
|
|
|
|
|
|
const tableStore = new TableStore({
|
2024-11-08 16:30:12 +08:00
|
|
|
|
publicHeight: 65,
|
2024-08-05 18:07:23 +08:00
|
|
|
|
showPage: false,
|
|
|
|
|
|
url: '/device-boot/terminalOnlineRateData/getOnlineRateData',
|
|
|
|
|
|
method: 'POST',
|
|
|
|
|
|
column: [
|
|
|
|
|
|
{
|
2025-04-25 09:18:50 +08:00
|
|
|
|
title: '电网拓扑',
|
2024-08-05 18:07:23 +08:00
|
|
|
|
field: 'name',
|
|
|
|
|
|
align: 'left',
|
2025-04-25 09:18:50 +08:00
|
|
|
|
treeNode: true,
|
2025-04-25 15:15:25 +08:00
|
|
|
|
width: 350,
|
2024-08-05 18:07:23 +08:00
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
title: '网络参数',
|
2024-08-07 15:10:37 +08:00
|
|
|
|
field: 'networkParam',
|
2024-08-05 18:07:23 +08:00
|
|
|
|
align: 'center',
|
|
|
|
|
|
formatter: function (row) {
|
|
|
|
|
|
return row.cellValue ? row.cellValue : '/'
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
title: '终端名称',
|
|
|
|
|
|
field: 'dataName',
|
|
|
|
|
|
align: 'center',
|
|
|
|
|
|
formatter: function (row) {
|
|
|
|
|
|
return row.cellValue ? row.cellValue : '/'
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
title: '厂家',
|
|
|
|
|
|
field: 'manufacturer',
|
|
|
|
|
|
align: 'center',
|
|
|
|
|
|
formatter: function (row) {
|
|
|
|
|
|
return row.cellValue ? row.cellValue : '/'
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
title: '通讯状态',
|
|
|
|
|
|
field: 'comFlag',
|
|
|
|
|
|
align: 'center',
|
|
|
|
|
|
render: 'tag',
|
|
|
|
|
|
custom: {
|
|
|
|
|
|
null: 'primary',
|
|
|
|
|
|
0: 'danger',
|
|
|
|
|
|
1: 'success'
|
|
|
|
|
|
},
|
|
|
|
|
|
replaceValue: {
|
|
|
|
|
|
null: '/',
|
|
|
|
|
|
0: '中断',
|
|
|
|
|
|
1: '正常'
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
title: '最新数据时间',
|
|
|
|
|
|
field: 'updateTime',
|
|
|
|
|
|
align: 'center',
|
|
|
|
|
|
formatter: function (row) {
|
|
|
|
|
|
return row.cellValue ? row.cellValue : '/'
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
title: '在线率(%)',
|
|
|
|
|
|
field: 'onlineRate',
|
|
|
|
|
|
align: 'center',
|
|
|
|
|
|
formatter: function (row) {
|
|
|
|
|
|
return row.cellValue == 3.14159 ? '暂无数据' : row.cellValue.toFixed(2)
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
title: '评估',
|
|
|
|
|
|
field: 'valueOver',
|
|
|
|
|
|
align: 'center',
|
2024-11-08 16:30:12 +08:00
|
|
|
|
effect:"dark",
|
2024-08-05 18:07:23 +08:00
|
|
|
|
render: 'tag',
|
|
|
|
|
|
custom: {
|
2024-11-08 16:30:12 +08:00
|
|
|
|
null: 'info',
|
2024-08-05 18:07:23 +08:00
|
|
|
|
0: 'danger',
|
|
|
|
|
|
1: 'success',
|
|
|
|
|
|
2: 'primary',
|
|
|
|
|
|
3: 'danger'
|
|
|
|
|
|
},
|
|
|
|
|
|
replaceValue: {
|
|
|
|
|
|
null: '暂无评估',
|
|
|
|
|
|
0: '暂无评估',
|
|
|
|
|
|
1: '优秀',
|
|
|
|
|
|
2: '合格',
|
|
|
|
|
|
3: '不合格'
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
],
|
|
|
|
|
|
beforeSearchFun: () => {
|
|
|
|
|
|
tableStore.table.params.deptIndex = formData.value.deptIndex
|
|
|
|
|
|
tableStore.table.params.statisticalType = formData.value.statisticalType
|
|
|
|
|
|
tableStore.table.params.scale = formData.value.scale
|
|
|
|
|
|
tableStore.table.params.manufacturer = formData.value.manufacturer
|
|
|
|
|
|
tableStore.table.params.loadType = formData.value.loadType
|
|
|
|
|
|
tableStore.table.params.serverName = 'harmonicBoot'
|
|
|
|
|
|
delete tableStore.table.params.timeFlag
|
|
|
|
|
|
delete tableStore.table.params.startTime
|
|
|
|
|
|
delete tableStore.table.params.endTime
|
|
|
|
|
|
delete tableStore.table.params.pageNum
|
|
|
|
|
|
delete tableStore.table.params.pageSize
|
|
|
|
|
|
// tableStore.table.params.searchBeginTime = tableHeaderRef.value.datePickerRef.timeValue[0]
|
|
|
|
|
|
// tableStore.table.params.searchEndTime = tableHeaderRef.value.datePickerRef.timeValue[1]
|
|
|
|
|
|
},
|
|
|
|
|
|
loadCallback: () => {
|
|
|
|
|
|
let treeData = []
|
|
|
|
|
|
treeData = tree2List(tableStore.table.data)
|
|
|
|
|
|
tableStore.table.data = JSON.parse(JSON.stringify(treeData))
|
2024-08-08 10:09:50 +08:00
|
|
|
|
chartsRef.value && chartsRef.value.getTableStoreParams(tableStore.table.params)
|
2024-08-05 18:07:23 +08:00
|
|
|
|
setTimeout(() => {
|
|
|
|
|
|
activeName.value == 0 && tableRef.value && tableRef.value.getRef().setAllTreeExpand(true)
|
|
|
|
|
|
}, 0)
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
2024-11-08 16:30:12 +08:00
|
|
|
|
|
2024-08-05 18:07:23 +08:00
|
|
|
|
tableStore.table.params.deptIndex = ''
|
|
|
|
|
|
tableStore.table.params.statisticalType = []
|
|
|
|
|
|
tableStore.table.params.scale = []
|
|
|
|
|
|
tableStore.table.params.manufacturer = []
|
|
|
|
|
|
tableStore.table.params.loadType = []
|
|
|
|
|
|
provide('tableStore', tableStore)
|
|
|
|
|
|
const tree2List = (list: any, pid?: string) => {
|
|
|
|
|
|
//存储结果的数组
|
|
|
|
|
|
let arr: any = []
|
|
|
|
|
|
// 遍历 tree 数组
|
|
|
|
|
|
list.forEach((item: any) => {
|
|
|
|
|
|
// item.comFlag = item.comFlag == null ? 3 : item.comFlag
|
|
|
|
|
|
item.valueOver == 3.14159 ? 0 : item.valueOver >= 90 ? 1 : item.valueOver && item.valueOver < 90 ? 2 : 3
|
|
|
|
|
|
item.pid = pid
|
|
|
|
|
|
// 判断item是否存在children
|
|
|
|
|
|
if (!item.children) return arr.push(item)
|
|
|
|
|
|
// 函数递归,对children数组进行tree2List的转换
|
|
|
|
|
|
const children = tree2List(item.children, item.id)
|
|
|
|
|
|
// 删除item的children属性
|
|
|
|
|
|
delete item.children
|
|
|
|
|
|
// 把item和children数组添加至结果数组
|
|
|
|
|
|
//..children: 意思是把children数组展开
|
|
|
|
|
|
arr.push(item, ...children)
|
|
|
|
|
|
})
|
|
|
|
|
|
// 返回结果数组
|
|
|
|
|
|
return arr
|
|
|
|
|
|
}
|
|
|
|
|
|
onMounted(() => {})
|
|
|
|
|
|
|
|
|
|
|
|
watch(
|
|
|
|
|
|
() => treeData.value,
|
|
|
|
|
|
(val, oldVal) => {
|
|
|
|
|
|
if (val && val.length != 0) {
|
|
|
|
|
|
formData.value.deptIndex = val[0].id
|
|
|
|
|
|
tableStore.index()
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
immediate: true,
|
|
|
|
|
|
deep: true
|
|
|
|
|
|
}
|
|
|
|
|
|
)
|
|
|
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
2024-11-08 16:30:12 +08:00
|
|
|
|
|
2024-08-05 18:07:23 +08:00
|
|
|
|
</style>
|