Files
admin-govern/src/components/cockpit/transientDetails/index.vue

251 lines
7.4 KiB
Vue
Raw Normal View History

<template>
<div>
<!--暂态事件明细 -->
<TableHeader :showReset="false" @selectChange="selectChange" datePicker v-if="fullscreen"></TableHeader>
2025-11-14 14:09:34 +08:00
<el-calendar
v-model="value"
:style="{
height: `calc(${prop.height} - ${headerHeight}px + ${fullscreen ? 0 : 56}px )`,
overflow: 'auto'
}"
>
<template #date-cell="{ data }">
<div style="height: 100%; padding: 8px" :style="{ background: setBackground(data.day) }">
<p :class="data.isSelected ? 'is-selected' : ''">
{{ data.day.split('-').slice(2).join('-') }}
</p>
<el-tooltip
effect="dark"
placement="top"
:hide-after="0"
2025-11-25 11:38:34 +08:00
v-if="hasEventData(data.day)"
>
<template #content>
<!-- <span v-html="list?.filter(item => item.time == data.day)[0]?.type || ''"></span> -->
2025-11-25 11:38:34 +08:00
<div v-for="item in list?.filter((item:any) => item.name == data.day)">
<div>电压暂降{{ item.eventDown || 0 }}</div>
<div>电压中断{{ item.eventOff || 0 }}</div>
<div>电压暂升{{ item.eventUp || 0 }}</div>
</div>
</template>
<div
style="text-decoration: underline"
2025-11-25 11:38:34 +08:00
:style="{ height: `calc(${prop.height} / 5 - 40px)`, overflow: 'auto' }"
v-for="item in list?.filter((item:any) => item.name == data.day)"
>
2025-11-25 11:38:34 +08:00
<div @click="descentClick">电压暂降:{{ item.eventDown || 0 }}</div>
<div>电压中断:{{ item.eventOff || 0 }}</div>
<div>电压暂升:{{ item.eventUp || 0 }}</div>
</div>
</el-tooltip>
</div>
</template>
</el-calendar>
<!-- 暂态事件列表 -->
2025-11-14 14:09:34 +08:00
<TransientList ref="transientListRef" />
</div>
</template>
<script setup lang="ts">
import { ref, onMounted, provide, reactive, watch, h } from 'vue'
import TableStore from '@/utils/tableStore'
import { getTimeOfTheMonth } from '@/utils/formatTime'
import { dayjs } from 'element-plus'
import TransientList from './components/transientList.vue'
import TableHeader from '@/components/table/header/index.vue'
import { useRoute } from 'vue-router'
import { useTimeCacheStore } from '@/stores/timeCache'
const prop = defineProps({
2025-11-14 14:09:34 +08:00
w: { type: [String, Number] },
h: { type: [String, Number] },
width: { type: [String, Number] },
height: { type: [String, Number] },
timeKey: { type: [String, Number] },
timeValue: { type: Object }
})
const headerHeight = ref(57)
2025-11-25 11:38:34 +08:00
const hasEventData = (day: string) => {
const item = list.value?.find((item: any) => item.name == day);
if (!item) return false;
return (item.eventDown || item.eventOff || item.eventUp) > 0;
}
const selectChange = (showSelect: any, height: any, datePickerValue?: any) => {
headerHeight.value = height
2025-11-14 14:09:34 +08:00
if (datePickerValue && datePickerValue.timeValue) {
// 更新时间参数
tableStore.table.params.searchBeginTime = datePickerValue.timeValue[0]
tableStore.table.params.searchEndTime = datePickerValue.timeValue[1]
}
}
// 计算是否全屏展示
const fullscreen = computed(() => {
const w = Number(prop.w)
const h = Number(prop.h)
if (!isNaN(w) && !isNaN(h) && w === 12 && h === 6) {
// 执行相应逻辑
return true
} else {
return false
}
})
dayjs.en.weekStart = 1 //设置日历的周起始日为星期一
const value = ref(new Date())
const transientListRef = ref()
2025-11-25 11:38:34 +08:00
const list = ref()
// const list = ref([
// {
// time: '2025-10-01',
// key: 81,
// type: 1,
// type1: 1,
// type2: 1
// },
// {
// time: '2025-10-31',
// key: 81,
// type: 1,
// type1: 1,
// type2: 1
// },
// {
// time: '2025-10-08',
// key: 20,
// type: 1,
// type1: 1,
// type2: 1
// },
// {
// time: '2025-10-16',
// key: 20,
// type: 1,
// type1: 1,
// type2: 1
// },
// {
// time: '2025-10-23',
// key: 20,
// type: 1,
// type1: 1,
// type2: 1
// },
// {
// time: '2025-10-04',
// key: 0
// },
// {
// time: '2025-10-05',
// key: 0
// }
// ])
const tableStore: any = new TableStore({
2025-11-25 11:38:34 +08:00
url: '/cs-harmonic-boot/csevent/getEventDate',
method: 'POST',
showPage: false,
column: [],
2025-11-14 14:09:34 +08:00
beforeSearchFun: () => {
tableStore.table.params.searchBeginTime = tableStore.table.params.searchBeginTime || prop.timeValue?.[0]
tableStore.table.params.searchEndTime = tableStore.table.params.searchEndTime || prop.timeValue?.[1]
},
2025-11-14 14:09:34 +08:00
loadCallback: () => {
2025-11-25 11:38:34 +08:00
list.value = tableStore.table.data
}
})
const setBackground = (value: string) => {
let data = []
2025-11-25 11:38:34 +08:00
data = list.value?.filter((item: any) => item.name == value)
if (data && data?.length > 0) {
2025-11-25 11:38:34 +08:00
if (data[0].eventDown > 0 || data[0].eventOff > 0 || data[0].eventUp > 0) {
return '#Ff660090'
}
}
return '#fff'
}
provide('tableStore', tableStore)
onMounted(() => {
tableStore.index()
})
watch(
() => prop.timeKey,
val => {
tableStore.index()
}
)
watch(
2025-11-14 14:09:34 +08:00
() => prop.timeValue,
(newVal, oldVal) => {
2025-11-14 14:09:34 +08:00
// 当外部时间值变化时,更新表格的时间参数
if (newVal && (!oldVal || newVal[0] !== oldVal[0] || newVal[1] !== oldVal[1])) {
tableStore.table.params.searchBeginTime = newVal[0]
tableStore.table.params.searchEndTime = newVal[1]
tableStore.index()
}
},
{
2025-11-14 14:09:34 +08:00
deep: true
}
)
// 电压暂降点击事件
const descentClick = () => {
transientListRef.value.open()
}
</script>
<style lang="scss" scoped>
:deep(.el-calendar) {
.el-calendar__header {
display: none;
}
.el-calendar__body {
padding: 0px !important;
height: 100%;
.el-calendar-table {
height: 100%;
}
}
.el-calendar-day {
height: 100%;
padding: 0px;
overflow: hidden;
}
.el-calendar-table__row {
.next {
pointer-events: none;
}
.prev {
pointer-events: none;
}
}
.el-calendar-table .el-calendar-day:hover {
background-color: #ffffff00;
}
.el-calendar-table td.is-selected {
background-color: #ffffff00;
}
}
// /*calendar_class 是el-calendar所在父标签的css*/
// .calendar_class >>> .el-calendar-table:not(.is-range) td.next {
// pointer-events: none;
// }
// .calendar_class >>> .el-calendar-table:not(.is-range) td.prev {
// pointer-events: none;
// }
</style>