Compare commits

...

33 Commits

Author SHA1 Message Date
stt
aa07112605 敏感用户管理加单位 2025-12-03 09:05:13 +08:00
guanj
c09bea9e04 修改波形样式 2025-12-02 16:03:04 +08:00
stt
22cd6088a3 敏感用户列表联调 2025-12-02 15:55:20 +08:00
stt
faf7ba98a6 区分项目 2025-12-01 15:04:44 +08:00
guanj
b90f70c72d Merge branch 'main' of http://192.168.1.22:3000/Web/admin-govern 2025-12-01 15:02:50 +08:00
guanj
d38b426527 添加项目区分 2025-12-01 15:02:33 +08:00
stt
79a246cd87 接口路径修改 2025-12-01 14:15:16 +08:00
stt
58ee36c6a5 接口路径修改 2025-12-01 09:33:12 +08:00
stt
515dcfe76c 联调修改 2025-11-28 16:33:32 +08:00
stt
031fab286b 电压暂升的时候显示/ 2025-11-28 14:34:16 +08:00
stt
58bc269940 F47曲线详情,暂态事件明细详情联调 2025-11-28 14:06:33 +08:00
stt
80182cdc6f 治理报告联调接口 2025-11-28 11:22:33 +08:00
stt
8ce2968bee 修改样式 2025-11-27 16:21:52 +08:00
guanj
1a146afcd7 修改 波形样式 2025-11-27 15:45:42 +08:00
guanj
800ec7f0cf 修改波形样式 2025-11-27 15:25:33 +08:00
stt
e824f4823a rem改成px 2025-11-27 15:08:04 +08:00
stt
2476d2401e 加上YPT的代码 2025-11-27 15:04:32 +08:00
stt
f043b6dc1a F47曲线不可容忍事件也有小圆圈 2025-11-27 15:00:35 +08:00
stt
09bf34700a 趋势对比线条颜色修改 2025-11-27 14:58:06 +08:00
stt
f32673c92a 去掉小圆点 2025-11-27 14:47:04 +08:00
stt
2c7b5a8583 波形图标题修改 2025-11-27 14:38:30 +08:00
stt
3745d91a9d 指标拟合图没有数据的时候也要展示x,y轴 2025-11-27 14:36:27 +08:00
guanj
9117a6e3c6 修改接口名称 2025-11-26 16:25:26 +08:00
stt
e759f443d3 查看波形图联调修改 2025-11-26 15:37:56 +08:00
stt
af3f9fe607 接口路径修改 2025-11-26 14:33:23 +08:00
stt
d97e97f51c 接口路径修改 2025-11-26 14:31:34 +08:00
stt
5e1a628d53 接口路径修改 2025-11-26 14:20:19 +08:00
stt
acc5e93731 波形图去掉背景色,文字颜色改成黑色 2025-11-26 13:45:14 +08:00
stt
93586255fc 接口路径调整 2025-11-26 13:11:56 +08:00
stt
cf51ba9ff0 日历表格调整 2025-11-26 09:31:32 +08:00
stt
67d9aaf958 暂态事件概率分布联调修改 2025-11-25 16:12:20 +08:00
stt
f1439e0464 Merge branch 'main' of http://192.168.1.22:3000/Web/admin-govern 2025-11-25 15:39:20 +08:00
stt
29c88b56dc 暂态事件概率分布联调 2025-11-25 15:39:17 +08:00
41 changed files with 2171 additions and 1825 deletions

3
.env.ypt Normal file
View File

@@ -0,0 +1,3 @@
# 云平台
NODE_ENV = ypt
VITE_NAME="ypt"

View File

@@ -1,2 +1,3 @@
# 治理
NODE_ENV = zl NODE_ENV = zl
VITE_NAME="zl" VITE_NAME="zl"

View File

@@ -6,8 +6,10 @@
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",
"dev:zl": "vite --mode zl", "dev:zl": "vite --mode zl",
"dev:ypt": "vite --mode ypt",
"build": "vite build", "build": "vite build",
"build:zl": "vite build --mode zl", "build:zl": "vite build --mode zl",
"build:ypt": "vite build --mode ypt",
"preview": "vite preview" "preview": "vite preview"
}, },
"dependencies": { "dependencies": {

View File

@@ -0,0 +1,28 @@
import request from '@/utils/request'
// 新增敏感用户
export function saveUser(data: any) {
return request({
url: '/cs-harmonic-boot/pqSensitiveUser/save',
method: 'post',
data: data
})
}
// 修改敏感用户
export function updateUser(data: any) {
return request({
url: '/cs-harmonic-boot/pqSensitiveUser/update',
method: 'post',
data: data
})
}
// 删除敏感用户
export function deleteUser(data: any) {
return request({
url: '/cs-harmonic-boot/pqSensitiveUser/delete',
method: 'post',
data: data
})
}

View File

@@ -3,7 +3,7 @@ import request from '@/utils/request'
// 主要监测点列表查询>>分页 // 主要监测点列表查询>>分页
export function mainLineList(data: any) { export function mainLineList(data: any) {
return request({ return request({
url: '/harmonic-boot/mainLine/list', url: '/cs-harmonic-boot/mainLine/list',
method: 'post', method: 'post',
data: data data: data
}) })
@@ -11,7 +11,7 @@ export function mainLineList(data: any) {
// 主要监测点指标越限详情 // 主要监测点指标越限详情
export function statLimitRateDetails(data: any) { export function statLimitRateDetails(data: any) {
return request({ return request({
url: '/harmonic-boot/mainLine/statLimitRateDetails', url: '/cs-harmonic-boot/mainLine/statLimitRateDetails',
method: 'post', method: 'post',
data: data data: data
}) })
@@ -38,7 +38,7 @@ export function trendData(data: any) {
// 每日越限占比统计 // 每日越限占比统计
export function totalLimitStatisticsDetails(data: any) { export function totalLimitStatisticsDetails(data: any) {
return request({ return request({
url: '/harmonic-boot/totalLimitStatistics/details', url: '/cs-harmonic-boot/totalLimitStatistics/details',
method: 'post', method: 'post',
data: data data: data
}) })
@@ -47,7 +47,7 @@ export function totalLimitStatisticsDetails(data: any) {
// 总体指标越限统计列表 // 总体指标越限统计列表
export function totalLimitStatisticsList(data: any) { export function totalLimitStatisticsList(data: any) {
return request({ return request({
url: '/harmonic-boot/totalLimitStatistics/list', url: '/cs-harmonic-boot/totalLimitStatistics/list',
method: 'post', method: 'post',
data: data data: data
}) })
@@ -56,7 +56,7 @@ export function totalLimitStatisticsList(data: any) {
// 总体指标越限统计数据 // 总体指标越限统计数据
export function totalLimitStatisticsData(data: any) { export function totalLimitStatisticsData(data: any) {
return request({ return request({
url: '/harmonic-boot/totalLimitStatistics/data', url: '/cs-harmonic-boot/totalLimitStatistics/data',
method: 'post', method: 'post',
data: data data: data
}) })
@@ -65,7 +65,7 @@ export function totalLimitStatisticsData(data: any) {
// 指标越限程度数据 // 指标越限程度数据
export function limitExtentData(data: any) { export function limitExtentData(data: any) {
return request({ return request({
url: '/harmonic-boot/limitRateDetailD/limitExtentData', url: '/cs-harmonic-boot/limitRateDetailD/limitExtentData',
method: 'post', method: 'post',
data: data data: data
}) })
@@ -73,7 +73,7 @@ export function limitExtentData(data: any) {
// 指标日趋势图数据 // 指标日趋势图数据
export function limitExtentDayData(data: any) { export function limitExtentDayData(data: any) {
return request({ return request({
url: '/harmonic-boot/limitRateDetailD/limitExtentDayData', url: '/cs-harmonic-boot/limitRateDetailD/limitExtentDayData',
method: 'post', method: 'post',
data: data data: data
}) })
@@ -82,7 +82,7 @@ export function limitExtentDayData(data: any) {
// 指标越限明细日历数据 // 指标越限明细日历数据
export function limitCalendarData(data: any) { export function limitCalendarData(data: any) {
return request({ return request({
url: '/harmonic-boot/limitRateDetailD/limitCalendarData', url: '/cs-harmonic-boot/limitRateDetailD/limitCalendarData',
method: 'post', method: 'post',
data: data data: data
}) })
@@ -100,7 +100,7 @@ export function fittingData(data: any) {
//指标越限时间概率分布 //指标越限时间概率分布
export function limitTimeProbabilityData(data: any) { export function limitTimeProbabilityData(data: any) {
return request({ return request({
url: '/harmonic-boot/limitRateDetailD/limitTimeProbabilityData', url: '/cs-harmonic-boot/limitRateDetailD/limitTimeProbabilityData',
method: 'post', method: 'post',
data: data data: data
}) })
@@ -109,7 +109,7 @@ export function limitTimeProbabilityData(data: any) {
//指标越限程度概率分布 //指标越限程度概率分布
export function limitProbabilityData(data: any) { export function limitProbabilityData(data: any) {
return request({ return request({
url: '/harmonic-boot/limitRateDetailD/limitProbabilityData', url: '/cs-harmonic-boot/limitRateDetailD/limitProbabilityData',
method: 'post', method: 'post',
data: data data: data
}) })
@@ -119,7 +119,7 @@ export function limitProbabilityData(data: any) {
// 电网侧指标越限统计列表 // 电网侧指标越限统计列表
export function gridSideLimitStatisticsList(data: any) { export function gridSideLimitStatisticsList(data: any) {
return request({ return request({
url: '/harmonic-boot/gridSideLimitStatistics/list', url: '/cs-harmonic-boot/gridSideLimitStatistics/list',
method: 'post', method: 'post',
data: data data: data
}) })
@@ -128,7 +128,7 @@ export function gridSideLimitStatisticsList(data: any) {
// 电网侧指标越限统计数据 // 电网侧指标越限统计数据
export function gridSideLimitStatisticsData(data: any) { export function gridSideLimitStatisticsData(data: any) {
return request({ return request({
url: '/harmonic-boot/gridSideLimitStatistics/data', url: '/cs-harmonic-boot/gridSideLimitStatistics/data',
method: 'post', method: 'post',
data: data data: data
}) })
@@ -234,4 +234,31 @@ export function netEventTable(data: any) {
}) })
} }
// 分页查询暂降事件
export function pageEvent(data: any) {
return request({
url: '/cs-harmonic-boot/event/pageEvent',
method: 'post',
data: data
})
}
// 暂态事件波形分析
export function analyseWave(data: any) {
return request({
url: '/cs-harmonic-boot/event/analyseWave',
method: 'get',
params: data
})
}
// 暂态监测点下拉框接口
export function getSimpleLine() {
return request({
url: '/cs-device-boot/csline/getSimpleLine',
method: 'get'
})
}

View File

@@ -3,14 +3,15 @@ import createAxios from '@/utils/request'
// 获取参数指标 // 获取参数指标
export function getIndex() { export function getIndex() {
return createAxios({ return createAxios({
url: '/harmonic-boot/customReport/reportChooseTree', // url: '/harmonic-boot/customReport/reportChooseTree',
url: '/cs-harmonic-boot/customReport/reportChooseTree',
method: 'get' method: 'get'
}) })
} }
//、查询数据激活报表模板 //、查询数据激活报表模板
export function updateTemplateActive(data) { export function updateTemplateActive(data) {
return createAxios({ return createAxios({
url: '/harmonic-boot/customReport/updateTemplateActive', url: '/cs-harmonic-boot/customReport/updateTemplateActive',
method: 'post', method: 'post',
data data
}) })
@@ -19,7 +20,8 @@ export function updateTemplateActive(data) {
//获取报表模板 //部门树查询 //获取报表模板 //部门树查询
export function getTemplateList(data:any) { export function getTemplateList(data:any) {
return createAxios({ return createAxios({
url: '/harmonic-boot/customReport/getTemplateList', // url: '/harmonic-boot/customReport/getTemplateList',
url: '/cs-harmonic-boot/customReport/getTemplateList',
// url:'/api3/harmonic-boot/customReport/getTemplateList', // url:'/api3/harmonic-boot/customReport/getTemplateList',
method: 'post', method: 'post',
data data
@@ -28,7 +30,7 @@ export function getTemplateList(data:any) {
//删除报表模板 //删除报表模板
export function delTemplate(data:any) { export function delTemplate(data:any) {
return createAxios({ return createAxios({
url: '/harmonic-boot/customReport/delTemplate', url: '/cs-harmonic-boot/customReport/delTemplate',
method: 'post', method: 'post',
data data
}) })
@@ -37,7 +39,7 @@ export function delTemplate(data:any) {
//修改获取数据 //修改获取数据
export function getCustomReportTemplateById(params) { export function getCustomReportTemplateById(params) {
return createAxios({ return createAxios({
url: '/harmonic-boot/customReport/getCustomReportTemplateById', url: '/cs-harmonic-boot/customReport/getCustomReportTemplateById',
method: 'get', method: 'get',
params params
}) })
@@ -46,7 +48,7 @@ export function getCustomReportTemplateById(params) {
//修改获取数据 //修改获取数据
export function viewCustomReportTemplateById(params) { export function viewCustomReportTemplateById(params) {
return createAxios({ return createAxios({
url: '/harmonic-boot/customReport/viewCustomReportTemplateById', url: '/cs-harmonic-boot/customReport/viewCustomReportTemplateById',
method: 'get', method: 'get',
params params
}) })
@@ -54,16 +56,17 @@ export function viewCustomReportTemplateById(params) {
//修改模板 //修改模板
export function dateTemplateup(data) { export function dateTemplateup(data) {
return createAxios({ return createAxios({
url: '/harmonic-boot/customReport/updateTemplate', url: '/cs-harmonic-boot/customReport/updateTemplate',
method: 'POST', method: 'POST',
data data
}) })
} }
//新增报表模板 //新增报表模板
export function addTemplate(data) { export function addTemplate(data:any) {
return createAxios({ return createAxios({
url: '/harmonic-boot/customReport/addTemplate', // url: '/harmonic-boot/customReport/addTemplate',
url: '/cs-harmonic-boot/customReport/addTemplate',
method: 'post', method: 'post',
data: data data: data
}) })
@@ -71,7 +74,7 @@ export function addTemplate(data) {
//模板对应指标替换 //模板对应指标替换
export function getCustomReport(data: any) { export function getCustomReport(data: any) {
return createAxios({ return createAxios({
url: '/harmonic-boot/customReport/getCustomReport', url: '/cs-harmonic-boot/customReport/getCustomReport',
method: 'POST', method: 'POST',
data data
}) })
@@ -79,7 +82,7 @@ export function getCustomReport(data: any) {
//绑定模板 //绑定模板
export function updateBindTemplate(data) { export function updateBindTemplate(data) {
return createAxios({ return createAxios({
url: '/harmonic-boot/customReport/updateBindTemplate', url: '/cs-harmonic-boot/customReport/updateBindTemplate',
method: 'post', method: 'post',
data data
}) })
@@ -87,7 +90,7 @@ export function updateBindTemplate(data) {
//根据模板ID查询数据 //根据模板ID查询数据
export function getDataByTempId(params) { export function getDataByTempId(params) {
return createAxios({ return createAxios({
url: '/harmonic-boot/customReport/getDataByTempId', url: '/cs-harmonic-boot/customReport/getDataByTempId',
method: 'get', method: 'get',
params params
}) })
@@ -95,7 +98,7 @@ export function getDataByTempId(params) {
//根据部门查询模板 //根据部门查询模板
export function getTemplateByDept(params) { export function getTemplateByDept(params) {
return createAxios({ return createAxios({
url: '/harmonic-boot/customReport/getTemplateByDept', url: '/cs-harmonic-boot/customReport/getTemplateByDept',
method: 'get', method: 'get',
params params
}) })
@@ -144,7 +147,7 @@ export function updateFile(data) {
//合格率报告 //合格率报告
export function pageTable(data) { export function pageTable(data) {
return createAxios({ return createAxios({
url: '/harmonic-boot/qualifiedReport/pageTable', url: '/cs-harmonic-boot/qualifiedReport/pageTable',
method: 'post', method: 'post',
data data
}) })
@@ -152,14 +155,16 @@ export function pageTable(data) {
//合格率报告 //合格率报告
export function targetLimitChooseTree() { export function targetLimitChooseTree() {
return createAxios({ return createAxios({
url: '/harmonic-boot/customReport/targetLimitChooseTree', // url: '/harmonic-boot/customReport/targetLimitChooseTree',
url: '/cs-harmonic-boot/customReport/targetLimitChooseTree',
method: 'get' method: 'get'
}) })
} }
//监测点指标 //监测点指标
export function terminalChooseTree() { export function terminalChooseTree() {
return createAxios({ return createAxios({
url: '/harmonic-boot/customReport/terminalChooseTree', // url: '/harmonic-boot/customReport/terminalChooseTree',
url: '/cs-harmonic-boot/customReport/terminalChooseTree',
method: 'get' method: 'get'
}) })
} }

View File

@@ -88,8 +88,9 @@ export const updateStatistical = (data: any) => {
// 单位绑定 // 单位绑定
export function codeDicTree(data: any) { export function codeDicTree(data: any) {
return createAxios({ return createAxios({
url: '/system-boot/dictTree/codeDicTree', // url: '/system-boot/dictTree/codeDicTree',
method: 'get', url: '/system-boot/dictTree/queryByCodeList',
method: 'post',
params: data params: data
}) })
} }

View File

@@ -9,6 +9,7 @@
<el-descriptions-item align="center" label="不可容忍">{{ data.bkrr }}</el-descriptions-item> <el-descriptions-item align="center" label="不可容忍">{{ data.bkrr }}</el-descriptions-item>
</el-descriptions> </el-descriptions>
<my-echart <my-echart
v-loading="tableStore.table.loading"
ref="chartRef" ref="chartRef"
class="tall" class="tall"
:options="echartList" :options="echartList"
@@ -18,10 +19,10 @@
}" }"
@chart-click="handleChartClick" @chart-click="handleChartClick"
/> />
<el-dialog v-model="isWaveCharts" draggable title="瞬时/RMS波形" append-to-body width="70%"> <el-dialog v-model="isWaveCharts" v-if="isWaveCharts" draggable :title="dialogTitle" append-to-body width="70%">
<waveFormAnalysis <waveFormAnalysis
v-loading="loading" v-loading="loading"
v-if="isWaveCharts"
ref="waveFormAnalysisRef" ref="waveFormAnalysisRef"
@handleHideCharts="isWaveCharts = false" @handleHideCharts="isWaveCharts = false"
:wp="wp" :wp="wp"
@@ -33,14 +34,10 @@
import { ref, onMounted, provide, reactive, watch, h } from 'vue' import { ref, onMounted, provide, reactive, watch, h } from 'vue'
import TableStore from '@/utils/tableStore' import TableStore from '@/utils/tableStore'
import MyEchart from '@/components/echarts/MyEchart.vue' import MyEchart from '@/components/echarts/MyEchart.vue'
import { ElMessage, ElMessageBox } from 'element-plus'
import { getTimeOfTheMonth } from '@/utils/formatTime'
import waveFormAnalysis from '@/views/govern/device/control/tabs/components/waveFormAnalysis.vue' import waveFormAnalysis from '@/views/govern/device/control/tabs/components/waveFormAnalysis.vue'
import TableHeader from '@/components/table/header/index.vue' import TableHeader from '@/components/table/header/index.vue'
import { useRoute } from 'vue-router'
import { useTimeCacheStore } from '@/stores/timeCache'
import { analyseWave } from '@/api/common' import { analyseWave } from '@/api/common'
import { ElMessage } from 'element-plus'
const prop = defineProps({ const prop = defineProps({
w: { type: [String, Number] }, w: { type: [String, Number] },
h: { type: [String, Number] }, h: { type: [String, Number] },
@@ -52,9 +49,7 @@ const prop = defineProps({
const headerHeight = ref(57) const headerHeight = ref(57)
const route = useRoute() const dialogTitle = ref('波形分析')
const timeCacheStore = useTimeCacheStore()
const selectChange = (showSelect: any, height: any, datePickerValue?: any) => { const selectChange = (showSelect: any, height: any, datePickerValue?: any) => {
headerHeight.value = height headerHeight.value = height
@@ -77,7 +72,7 @@ const fullscreen = computed(() => {
} }
}) })
const echartList = ref({}) const echartList = ref()
const chartRef = ref() const chartRef = ref()
// 波形 // 波形
@@ -113,7 +108,6 @@ const tableStore: any = new TableStore({
data.gs = tableStore.table.data.length data.gs = tableStore.table.data.length
data.krr = gongData.pointI.length data.krr = gongData.pointI.length
data.bkrr = gongData.pointIun.length data.bkrr = gongData.pointIun.length
// console.log(gongData,'789000')
echartList.value = { echartList.value = {
title: { title: {
text: `F47曲线` text: `F47曲线`
@@ -229,7 +223,7 @@ const tableStore: any = new TableStore({
{ {
name: '不可容忍事件', name: '不可容忍事件',
type: 'scatter', type: 'scatter',
symbol: 'rect', symbol: 'circle',
symbolSize: 8, symbolSize: 8,
data: gongData.pointFun, data: gongData.pointFun,
legendSymbol: 'rect' legendSymbol: 'rect'
@@ -263,8 +257,9 @@ function gongfunction(arr: any) {
let yy = arr[i].eventValue let yy = arr[i].eventValue
let time = arr[i].time let time = arr[i].time
let eventId = arr[i].eventId let eventId = arr[i].eventId
let lineName = arr[i].lineName
// let index =arr[i].eventDetailIndex; // let index =arr[i].eventDetailIndex;
point = [xx, yy, time, eventId] point = [xx, yy, time, eventId, lineName]
if (xx <= 0.003) { if (xx <= 0.003) {
let line = 0 let line = 0
@@ -413,33 +408,45 @@ onMounted(() => {
const handleChartClick = (params: any) => { const handleChartClick = (params: any) => {
if (params.seriesName === '可容忍事件') { if (params.seriesName === '可容忍事件') {
// 处理可容忍事件点击 // 处理可容忍事件点击
ElMessage.info(`点击了可容忍事件: 持续时间${params.value[0]}s, 幅值${params.value[1].toFixed(2)}%`) dialogTitle.value = '可容忍事件波形分析'
handleTolerableEventClick(params) handleTolerableEventClick(params)
} else if (params.seriesName === '不可容忍事件') { } else if (params.seriesName === '不可容忍事件') {
dialogTitle.value = '不可容忍事件波形分析'
// 处理不可容忍事件点击 // 处理不可容忍事件点击
ElMessage.info(`点击了不可容忍事件: 持续时间${params.value[0]}s, 幅值${params.value[1].toFixed(2)}%`) // ElMessage.info(`点击了不可容忍事件: 持续时间${params.value[0]}s, 幅值${params.value[1].toFixed(2)}%`)
handleIntolerableEventClick(params) handleTolerableEventClick(params)
} }
} }
// 可容忍事件点击处理函数 // 可容忍事件点击处理函数
const handleTolerableEventClick = async (row: any) => { const handleTolerableEventClick = async (row: any) => {
console.log('可容忍事件详情:', row)
isWaveCharts.value = true
loading.value = true loading.value = true
isWaveCharts.value = true nextTick(() => {
await analyseWave(row.id) if (waveFormAnalysisRef.value) {
//waveFormAnalysisRef.value.setHeight(false, 360)
waveFormAnalysisRef.value.setHeight(999, 130, 1.6666666)
}
})
const messageInstance = ElMessage.info(`正在加载,请稍等...`)
await analyseWave(row.value[3]) //eventId
.then(res => { .then(res => {
row.loading1 = false row.loading1 = false
if (res != undefined) { if (res != undefined) {
boxoList.value = row boxoList.value = {
boxoList.value.featureAmplitude = row.evtParamVVaDepth != '-' ? row.evtParamVVaDepth - 0 : null persistTime: row.value[0], //持续时间
boxoList.value.systemType = 'WX' featureAmplitude: (row.value[1] / 100).toFixed(2), //残余电压
startTime: row.value[2], //时间
lineName: row.value[4] //监测点名称
}
boxoList.value.systemType = 'YPT'
wp.value = res.data wp.value = res.data
} }
isWaveCharts.value = true
loading.value = false loading.value = false
}) })
.catch(() => { .catch(() => {
messageInstance.close()
row.loading1 = false row.loading1 = false
loading.value = false loading.value = false
}) })

View File

@@ -66,7 +66,7 @@ const echartList = ref()
const dailyTrendChartRef = ref() const dailyTrendChartRef = ref()
const tableStore: any = new TableStore({ const tableStore: any = new TableStore({
url: '/harmonic-boot/limitRateDetailD/limitExtentData', url: '/cs-harmonic-boot/limitRateDetailD/limitExtentData',
method: 'POST', method: 'POST',
showPage: false, showPage: false,

File diff suppressed because one or more lines are too long

View File

@@ -4,26 +4,13 @@
<TableHeader :showReset="false" datePicker @selectChange="selectChange" v-if="fullscreen"> <TableHeader :showReset="false" datePicker @selectChange="selectChange" v-if="fullscreen">
<template v-slot:select> <template v-slot:select>
<el-form-item label="报表模板"> <el-form-item label="报表模板">
<el-select <el-select v-model="tableStore.table.params.tempId" placeholder="请选择报表模板" clearable>
v-model="tableStore.table.params.tempId"
placeholder="请选择报表模板"
clearable
>
<el-option v-for="item in templateList" :key="item.id" :label="item.name" :value="item.id" /> <el-option v-for="item in templateList" :key="item.id" :label="item.name" :value="item.id" />
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item label="监测对象"> <el-form-item label="监测对象">
<el-select <el-select v-model="tableStore.table.params.sensitiveUserId" placeholder="请选择监测对象" clearable>
v-model="tableStore.table.params.sensitiveUserId" <el-option v-for="item in idList" :key="item.id" :label="item.name" :value="item.id" />
placeholder="请选择监测对象"
clearable
>
<el-option
v-for="item in idList"
:key="item.id"
:label="item.name"
:value="item.id"
/>
</el-select> </el-select>
</el-form-item> </el-form-item>
</template> </template>
@@ -31,7 +18,7 @@
<el-button @click="downloadExcel" class="" type="primary" icon="el-icon-Download">导出excel</el-button> <el-button @click="downloadExcel" class="" type="primary" icon="el-icon-Download">导出excel</el-button>
</template> </template>
</TableHeader> </TableHeader>
<div style="display: flex;"> <div style="display: flex">
<div <div
id="luckysheet" id="luckysheet"
:style="{ :style="{
@@ -43,15 +30,13 @@
</div> </div>
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import { ref, onMounted, provide, reactive, watch, h, computed } from 'vue' import { ref, onMounted, provide, reactive, watch, h, computed, nextTick } from 'vue'
import TableStore from '@/utils/tableStore' import TableStore from '@/utils/tableStore'
import { exportExcel } from '@/views/govern/reportForms/export.js' import { exportExcel } from '@/views/govern/reportForms/export.js'
import TableHeader from '@/components/table/header/index.vue' import TableHeader from '@/components/table/header/index.vue'
import { useConfig } from '@/stores/config'
import Json from './index.json'
import JsonAfter from './index.json'
import { getTemplateList } from '@/api/harmonic-boot/luckyexcel' import { getTemplateList } from '@/api/harmonic-boot/luckyexcel'
import { getListByIds } from '@/api/harmonic-boot/cockpit/cockpit' import { getListByIds } from '@/api/harmonic-boot/cockpit/cockpit'
import Json from './index.json'
const prop = defineProps({ const prop = defineProps({
w: { type: [String, Number] }, w: { type: [String, Number] },
@@ -62,26 +47,6 @@ const prop = defineProps({
timeValue: { type: Object } timeValue: { type: Object }
}) })
const tableStore: any = new TableStore({
url: '/user-boot/role/selectRoleDetail?id=0',
method: 'POST',
showPage: false,
exportName: '主要监测点列表',
column: [],
beforeSearchFun: () => {
tableStore.table.params.searchBeginTime = tableStore.table.params.searchBeginTime || prop.timeValue?.[0]
tableStore.table.params.searchEndTime = tableStore.table.params.searchEndTime || prop.timeValue?.[1]
},
loadCallback: () => {}
})
const tableRef = ref()
provide('tableRef', tableRef)
tableStore.table.params.power = '1'
provide('tableStore', tableStore)
// 报表模板列表 // 报表模板列表
const templateList = ref() const templateList = ref()
@@ -93,9 +58,11 @@ const initListByIds = () => {
getListByIds({}).then((res: any) => { getListByIds({}).then((res: any) => {
if (res.data.length > 0) { if (res.data.length > 0) {
idList.value = res.data idList.value = res.data
if (!tableStore.table.params.sensitiveUserId && idList.value?.length > 0) { if (!tableStore.table.params.sensitiveUserId && idList.value?.length > 0) {
tableStore.table.params.sensitiveUserId = idList.value[0].id tableStore.table.params.sensitiveUserId = idList.value[0].id
} }
templateListData()
} }
}) })
} }
@@ -104,8 +71,11 @@ const templateListData = () => {
getTemplateList({}).then(res => { getTemplateList({}).then(res => {
templateList.value = res.data templateList.value = res.data
if (!tableStore.table.params.tempId && templateList.value?.length > 0) { if (!tableStore.table.params.tempId && templateList.value?.length > 0) {
tableStore.table.params.tempId = res.data[0].id tableStore.table.params.tempId = templateList.value[0].id
} }
nextTick(() => {
tableStore.index()
})
}) })
} }
// 下载表格 // 下载表格
@@ -115,19 +85,6 @@ const downloadExcel = () => {
onMounted(() => { onMounted(() => {
initListByIds() initListByIds()
templateListData()
luckysheet.create({
container: 'luckysheet',
title: '', // 表 头名
lang: 'zh', // 中文
showtoolbar: false, // 是否显示工具栏
showinfobar: false, // 是否显示顶部信息栏
showsheetbar: true, // 是否显示底部sheet按钮
allowEdit: false, // 禁止所有编辑操作(必填)
data: Json
})
tableStore.index()
}) })
const selectChange = (showSelect: any, height: any, datePickerValue?: any) => { const selectChange = (showSelect: any, height: any, datePickerValue?: any) => {
@@ -149,6 +106,42 @@ const fullscreen = computed(() => {
return false return false
} }
}) })
const tableStore: any = new TableStore({
url: '/cs-harmonic-boot/customReport/getSensitiveUserReport',
method: 'POST',
showPage: false,
exportName: '治理效果报表',
column: [],
beforeSearchFun: () => {
tableStore.table.params.searchBeginTime = tableStore.table.params.searchBeginTime || prop.timeValue?.[0]
tableStore.table.params.searchEndTime = tableStore.table.params.searchEndTime || prop.timeValue?.[1]
if (!tableStore.table.params.sensitiveUserId && idList.value?.length > 0) {
tableStore.table.params.sensitiveUserId = idList.value[0].id
}
if (!tableStore.table.params.tempId && templateList.value?.length > 0) {
tableStore.table.params.tempId = templateList.value[0].id
}
},
loadCallback: () => {
luckysheet.create({
container: 'luckysheet',
title: '', // 表 头名
lang: 'zh', // 中文
showtoolbar: false, // 是否显示工具栏
showinfobar: false, // 是否显示顶部信息栏
showsheetbar: true, // 是否显示底部sheet按钮
allowEdit: false, // 禁止所有编辑操作(必填)
data: tableStore.table.data
})
}
})
const tableRef = ref()
provide('tableRef', tableRef)
provide('tableStore', tableStore)
watch( watch(
() => prop.timeKey, () => prop.timeKey,
val => { val => {

View File

@@ -1,238 +0,0 @@
<template>
<div>
<!--治理效果报表 -->
<TableHeader :showReset="false" datePicker @selectChange="selectChange" v-if="fullscreen">
<template v-slot:select>
<el-form-item label="监测对象">
<el-select
v-model="tableStore.table.params.power"
placeholder="请选择监测对象"
clearable
style="width: 130px"
>
<el-option
v-for="item in powerList"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
</template>
<template v-slot:operation>
<el-button @click="downloadExcel" class="" type="primary" icon="el-icon-Download">导出excel</el-button>
</template>
</TableHeader>
<!-- 左右布局展示治理前后报表 -->
<div class="report-container">
<!-- 治理前报表 -->
<div class="report-panel before">
<div class="panel-header">治理前报表</div>
<div
id="luckysheet-before"
:style="{
width: '100%',
height: `calc(${prop.height} - ${fullscreen ? '114px' : '57px'} + ${fullscreen ? 0 : 56}px)`
}"
></div>
</div>
<!-- 治理后报表 -->
<div class="report-panel after">
<div class="panel-header">治理后报表</div>
<div
id="luckysheet-after"
:style="{
width: '100%',
height: `calc(${prop.height} - ${fullscreen ? '114px' : '57px'} + ${fullscreen ? 0 : 56}px)`
}"
></div>
</div>
</div>
</div>
</template>
<script setup lang="ts">
import { ref, onMounted, provide, watch, computed } from 'vue'
import TableStore from '@/utils/tableStore'
import { exportExcel } from '@/views/govern/reportForms/export.js'
import TableHeader from '@/components/table/header/index.vue'
import Json from './index.json'
import JsonAfter from './index1.json'
const prop = defineProps({
w: { type: [String, Number] },
h: { type: [String, Number] },
width: { type: [String, Number] },
height: { type: [String, Number] },
timeKey: { type: [String, Number] },
timeValue: { type: Object }
})
const powerList: any = ref([
{
label: '1#变压器',
value: '1'
},
{
label: '2#变压器',
value: '2'
}
])
const tableStore: any = new TableStore({
url: '/user-boot/role/selectRoleDetail?id=0',
method: 'POST',
showPage: false,
exportName: '治理效果报表',
column: [],
beforeSearchFun: () => {
tableStore.table.params.searchBeginTime = tableStore.table.params.searchBeginTime || prop.timeValue?.[0]
tableStore.table.params.searchEndTime = tableStore.table.params.searchEndTime || prop.timeValue?.[1]
},
loadCallback: () => {}
})
const tableRef = ref()
provide('tableRef', tableRef)
tableStore.table.params.power = '1'
provide('tableStore', tableStore)
// 下载表格
const downloadExcel = () => {
// 可以选择导出治理前、治理后或两个报表
const beforeSheets = luckysheetBefore.getAllSheets()
const afterSheets = luckysheetAfter.getAllSheets()
exportExcel([...beforeSheets, ...afterSheets], '治理效果对比报表')
}
// 治理前和治理后的Luckysheet实例
let luckysheetBefore: any
let luckysheetAfter: any
onMounted(() => {
// 创建治理前报表
luckysheetBefore = luckysheet.create({
container: 'luckysheet-before',
title: '治理前',
lang: 'zh',
showtoolbar: false,
showinfobar: false,
showsheetbar: true,
allowEdit: false,
data: Json
})
// 创建治理后报表
luckysheetAfter = luckysheet.create({
container: 'luckysheet-after',
title: '治理后',
lang: 'zh',
showtoolbar: false,
showinfobar: false,
showsheetbar: true,
allowEdit: false,
data: JsonAfter // 使用治理后的数据
})
tableStore.index()
})
const selectChange = (showSelect: any, height: any, datePickerValue?: any) => {
if (datePickerValue && datePickerValue.timeValue) {
// 更新时间参数
tableStore.table.params.searchBeginTime = datePickerValue.timeValue[0]
tableStore.table.params.searchEndTime = datePickerValue.timeValue[1]
// 可以在这里更新报表数据
updateReportData()
}
}
// 更新报表数据的方法
const updateReportData = () => {
// 这里可以根据时间参数更新治理前后的报表数据
// 示例:重新加载数据或更新现有数据
console.log('更新报表数据:', {
beginTime: tableStore.table.params.searchBeginTime,
endTime: tableStore.table.params.searchEndTime
})
}
// 计算是否全屏展示
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
}
})
watch(
() => prop.timeKey,
val => {
tableStore.index()
updateReportData()
}
)
watch(
() => prop.timeValue,
(newVal, oldVal) => {
// 当外部时间值变化时,更新表格的时间参数
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()
updateReportData()
}
},
{
deep: true
}
)
</script>
<style lang="scss" scoped>
.report-container {
display: flex;
height: calc(100% - 57px);
.report-panel {
flex: 1;
display: flex;
flex-direction: column;
border: 1px solid var(--el-border-color);
&.before {
margin-right: 5px;
}
&.after {
margin-left: 5px;
}
.panel-header {
padding: 10px 15px;
background-color: var(--el-color-primary-light-9);
font-weight: bold;
border-bottom: 1px solid var(--el-border-color);
text-align: center;
}
// 确保Luckysheet容器占满剩余空间
:deep(#luckysheet-before),
:deep(#luckysheet-after) {
flex: 1;
}
}
}
:deep(.el-select) {
min-width: 80px;
}
</style>

View File

@@ -58,7 +58,7 @@ const loop50 = (key: string) => {
return list return list
} }
const tableStore: any = new TableStore({ const tableStore: any = new TableStore({
url: '/harmonic-boot/totalLimitStatistics/details', url: '/cs-harmonic-boot/totalLimitStatistics/details',
method: 'POST', method: 'POST',
publicHeight: 30, publicHeight: 30,
showPage: false, showPage: false,

View File

@@ -117,7 +117,7 @@ const initEcharts = () => {
const OverLimitDetailsRef = ref() const OverLimitDetailsRef = ref()
const tableStore: any = new TableStore({ const tableStore: any = new TableStore({
url: '/harmonic-boot/gridSideLimitStatistics/list', url: '/cs-harmonic-boot/gridSideLimitStatistics/list',
method: 'POST', method: 'POST',
showPage: false, showPage: false,

View File

@@ -1,7 +1,14 @@
<template> <template>
<div> <div>
<!--指标越限明细 --> <!--指标越限明细 -->
<TableHeader :showReset="false" @selectChange="selectChange" datePicker v-if="fullscreen"></TableHeader> <TableHeader
:showReset="false"
ref="TableHeaderRef"
@selectChange="selectChange"
datePicker
v-if="fullscreen"
:timeCacheFlag="false"
></TableHeader>
<el-calendar <el-calendar
v-model="value" v-model="value"
:style="{ :style="{
@@ -51,6 +58,8 @@ const headerHeight = ref(57)
const list = ref() const list = ref()
const TableHeaderRef = ref()
dayjs.en.weekStart = 1 //设置日历的周起始日为星期一 dayjs.en.weekStart = 1 //设置日历的周起始日为星期一
const value = ref(new Date()) const value = ref(new Date())
@@ -82,46 +91,18 @@ const getTextForDate = (date: string) => {
} }
const tableStore: any = new TableStore({ const tableStore: any = new TableStore({
// url: '/user-boot/role/selectRoleDetail?id=0', url: '/cs-harmonic-boot/limitRateDetailD/limitCalendarData',
url: '/harmonic-boot/limitRateDetailD/limitCalendarData',
method: 'POST', method: 'POST',
showPage: false, showPage: false,
column: [], column: [],
beforeSearchFun: () => { beforeSearchFun: () => {
tableStore.table.params.searchBeginTime = tableStore.table.params.searchBeginTime || prop.timeValue?.[0] if (!fullscreen.value && prop.timeValue && Array.isArray(prop.timeValue)) {
tableStore.table.params.searchEndTime = tableStore.table.params.searchEndTime || prop.timeValue?.[1] tableStore.table.params.searchBeginTime = prop.timeValue[0]
tableStore.table.params.searchEndTime = prop.timeValue[1]
}
}, },
loadCallback: () => { loadCallback: () => {
value.value = tableStore.table.params.searchBeginTime value.value = tableStore.table.params.searchBeginTime
// 将后端返回的数据整合到 list 中
// tableStore.table.data = [
// {
// "time": "2025-11-13",
// "items": [
// "闪变越限",
// "谐波电流越限"
// ],
// "status": 1
// },
// {
// "time": "2025-11-14",
// "items": [
// "频率偏差越限",
// "三相电压不平衡越限",
// "谐波电压越限",
// "谐波电流越限",
// "频率偏差越限",
// "三相电压不平衡越限",
// "谐波电压越限",
// "谐波电流越限",
// "频率偏差越限",
// "三相电压不平衡越限",
// "谐波电压越限",
// "谐波电流越限"
// ],
// "status": 2
// }
// ]
if (tableStore.table.data && tableStore.table.data.length > 0) { if (tableStore.table.data && tableStore.table.data.length > 0) {
list.value = tableStore.table.data.map((item: any) => { list.value = tableStore.table.data.map((item: any) => {
// 将 items 数组转换为带换行的文本 // 将 items 数组转换为带换行的文本
@@ -162,8 +143,16 @@ const setBackground = (value: string) => {
provide('tableStore', tableStore) provide('tableStore', tableStore)
onMounted(() => { onMounted(() => {
nextTick(() => {
if (TableHeaderRef.value && typeof TableHeaderRef.value.setDatePicker === 'function') {
TableHeaderRef.value.setDatePicker([{ label: '月份', value: 3 }])
}
if (fullscreen.value) {
TableHeaderRef.value.setInterval(3)
}
tableStore.index() tableStore.index()
}) })
})
watch( watch(
() => prop.timeKey, () => prop.timeKey,
val => { val => {
@@ -172,20 +161,22 @@ watch(
) )
watch( watch(
() => prop.timeValue, () => prop.timeValue,
(newVal, oldVal) => { // (newVal, oldVal) => {
// 当外部时间值变化时,更新表格的时间参数 // // 当外部时间值变化时,更新表格的时间参数
if (newVal && (!oldVal || newVal[0] !== oldVal[0] || newVal[1] !== oldVal[1])) { // if (newVal && (!oldVal || newVal[0] !== oldVal[0] || newVal[1] !== oldVal[1])) {
tableStore.table.params.searchBeginTime = newVal[0] // tableStore.table.params.searchBeginTime = newVal[0]
tableStore.table.params.searchEndTime = newVal[1] // tableStore.table.params.searchEndTime = newVal[1]
// tableStore.index()
// }
// },
val => {
tableStore.index() tableStore.index()
}
}, },
{ {
deep: true deep: true
} }
) )
const addMenu = () => {}
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
:deep(.el-calendar) { :deep(.el-calendar) {

View File

@@ -397,7 +397,7 @@ const initProbabilityData = () => {
} }
const tableStore: any = new TableStore({ const tableStore: any = new TableStore({
url: '/harmonic-boot/limitRateDetailD/limitTimeProbabilityData', url: '/cs-harmonic-boot/limitRateDetailD/limitTimeProbabilityData',
method: 'POST', method: 'POST',
showPage: false, showPage: false,
column: [], column: [],
@@ -420,6 +420,7 @@ const tableStore: any = new TableStore({
return { return {
name: indexName, name: indexName,
type: 'line', type: 'line',
symbol: 'none',
data: dataIndex.map((item: any) => [item.timePeriod, item.times]) data: dataIndex.map((item: any) => [item.timePeriod, item.times])
} }
}) })

View File

@@ -63,7 +63,7 @@ const loop50 = (key: string) => {
return list return list
} }
const tableStore: any = new TableStore({ const tableStore: any = new TableStore({
url: '/harmonic-boot/mainLine/statLimitRateDetails', url: '/cs-harmonic-boot/mainLine/statLimitRateDetails',
method: 'POST', method: 'POST',
publicHeight: 30, publicHeight: 30,
showPage: false, showPage: false,

View File

@@ -67,7 +67,7 @@ const selectChange = (showSelect: any, height: any, datePickerValue?: any) => {
} }
const tableStore: any = new TableStore({ const tableStore: any = new TableStore({
url: '/harmonic-boot/mainLine/list', url: '/cs-harmonic-boot/mainLine/list',
method: 'POST', method: 'POST',
showPage: fullscreen.value ? true : false, showPage: fullscreen.value ? true : false,
exportName: '主要监测点列表', exportName: '主要监测点列表',

View File

@@ -62,7 +62,6 @@
width: prop.width, width: prop.width,
height: `calc(${prop.height} - ${headerHeight}px + ${fullscreen ? 0 : 56}px )` height: `calc(${prop.height} - ${headerHeight}px + ${fullscreen ? 0 : 56}px )`
}" }"
v-if="showEchart"
/> />
</div> </div>
</div> </div>
@@ -94,8 +93,6 @@ const powerList: any = ref()
const countData: any = ref([]) const countData: any = ref([])
const showEchart = ref(true)
const chartsList = ref<any>([]) const chartsList = ref<any>([])
// 计算是否全屏展示 // 计算是否全屏展示
@@ -198,12 +195,6 @@ const setEchart = () => {
} }
} }
// 检查是否有数据
if (!chartsList.value || chartsList.value.length === 0) {
showEchart.value = false // 没有数据时隐藏图表
return
}
try { try {
// 用户功率数据和电能质量数据 // 用户功率数据和电能质量数据
let powerData: any[] = [] let powerData: any[] = []
@@ -242,20 +233,11 @@ const setEchart = () => {
const hasPowerData = processedPowerData.length > 0 && processedPowerData.some(item => item[1] !== null) const hasPowerData = processedPowerData.length > 0 && processedPowerData.some(item => item[1] !== null)
const hasQualityData = processedQualityData.length > 0 && processedQualityData.some(item => item[1] !== null) const hasQualityData = processedQualityData.length > 0 && processedQualityData.some(item => item[1] !== null)
if (!hasPowerData && !hasQualityData) {
showEchart.value = false
return
}
// 更新图表配置 // 更新图表配置
echartList.value.options.series[0].data = processedPowerData echartList.value.options.series[0].data = processedPowerData
echartList.value.options.series[1].data = processedQualityData echartList.value.options.series[1].data = processedQualityData
// 确保图表显示
showEchart.value = true
} catch (error) { } catch (error) {
console.error('处理图表数据时出错:', error) console.error('处理图表数据时出错:', error)
showEchart.value = false
} }
} }
@@ -330,11 +312,9 @@ const tableStore: any = new TableStore({
loadCallback: () => { loadCallback: () => {
tableStore.table.height = `calc(${prop.height} - 80px)` tableStore.table.height = `calc(${prop.height} - 80px)`
// 数据加载完成后的处理 // 数据加载完成后的处理
if (tableStore.table.data && tableStore.table.data.length > 0) { if (tableStore.table.data) {
chartsList.value = JSON.parse(JSON.stringify(tableStore.table.data)) chartsList.value = JSON.parse(JSON.stringify(tableStore.table.data))
setEchart() setEchart()
} else if (tableStore.table.data) {
showEchart.value = false
} }
} }
}) })

View File

@@ -58,7 +58,7 @@ const loop50 = (key: string) => {
return list return list
} }
const tableStore: any = new TableStore({ const tableStore: any = new TableStore({
url: '/harmonic-boot/totalLimitStatistics/details', url: '/cs-harmonic-boot/totalLimitStatistics/details',
method: 'POST', method: 'POST',
publicHeight: 30, publicHeight: 30,
showPage: false, showPage: false,

View File

@@ -58,7 +58,7 @@ const loop50 = (key: string) => {
return list return list
} }
const tableStore: any = new TableStore({ const tableStore: any = new TableStore({
url: '/harmonic-boot/totalLimitStatistics/details', url: '/cs-harmonic-boot/totalLimitStatistics/details',
method: 'POST', method: 'POST',
publicHeight: 30, publicHeight: 30,
showPage: false, showPage: false,

View File

@@ -120,7 +120,7 @@ const initEcharts = () => {
const OverLimitDetailsRef = ref() const OverLimitDetailsRef = ref()
const tableStore: any = new TableStore({ const tableStore: any = new TableStore({
url: '/harmonic-boot/totalLimitStatistics/list', url: '/cs-harmonic-boot/totalLimitStatistics/list',
method: 'POST', method: 'POST',
showPage: false, showPage: false,

View File

@@ -1,15 +1,11 @@
<template> <template>
<div> <div>
<!-- 暂态事件列表 --> <!-- 暂态事件详情 -->
<el-dialog draggable title="暂态事件列表" v-model="dialogVisible" append-to-body width="70%"> <el-dialog draggable title="暂态事件详情 " v-model="dialogVisible" append-to-body width="70%">
<!-- <TableHeader datePicker showExport :showReset="false"> <TableHeader datePicker showExport :showReset="false" ref="tableHeaderRef" @selectChange="selectChange">
<template v-slot:select> <template v-slot:select>
<el-form-item label="监测点名称"> <el-form-item label="监测点">
<el-select <el-select v-model="tableStore.table.params.lineId" placeholder="请选择监测点名称">
v-model="tableStore.table.params.searchValue"
placeholder="请选择监测点名称"
style="width: 240px"
>
<el-option <el-option
v-for="item in options" v-for="item in options"
:key="item.value" :key="item.value"
@@ -19,8 +15,25 @@
</el-select> </el-select>
</el-form-item> </el-form-item>
</template> </template>
</TableHeader> --> </TableHeader>
<Table ref="tableRef" isGroup :height="height"></Table> <Table ref="tableRef" isGroup :height="heightRef"></Table>
</el-dialog>
<!-- 查看波形 -->
<el-dialog
v-model="isWaveCharts"
draggable
title="波形分析"
append-to-body
v-if="isWaveCharts"
width="70%"
@close="handleHideCharts"
>
<waveFormAnalysis
v-loading="loading"
ref="waveFormAnalysisRef"
@handleHideCharts="handleHideCharts"
:wp="wp"
/>
</el-dialog> </el-dialog>
</div> </div>
</template> </template>
@@ -30,21 +43,36 @@ import Table from '@/components/table/index.vue'
import TableHeader from '@/components/table/header/index.vue' import TableHeader from '@/components/table/header/index.vue'
import TableStore from '@/utils/tableStore' import TableStore from '@/utils/tableStore'
import { mainHeight } from '@/utils/layout' import { mainHeight } from '@/utils/layout'
import waveFormAnalysis from '@/views/govern/device/control/tabs/components/waveFormAnalysis.vue'
import { analyseWave } from '@/api/common'
import { getSimpleLine } from '@/api/harmonic-boot/cockpit/cockpit'
const dialogVisible: any = ref(false) const dialogVisible: any = ref(false)
const harmonicRatioRef: any = ref(null) const waveFormAnalysisRef: any = ref(null)
const options = [ // 波形
{ const isWaveCharts = ref(false)
value: '35kV进线', const loading = ref(false)
label: '35kV进线' const wp = ref({})
const boxoList: any = ref({})
const tableHeaderRef = ref()
const options = ref()
const heightRef = ref(mainHeight(168, 2.1).height)
const selectChange = (flag: boolean, h: any) => {
heightRef.value = mainHeight(h, 2.1).height
} }
]
const height = mainHeight(0, 2).height as any const getSimpleLineList = async () => {
const res = await getSimpleLine()
options.value = res.data
}
const tableStore: any = new TableStore({ const tableStore: any = new TableStore({
url: '/user-boot/role/selectRoleDetail?id=0', url: '/cs-harmonic-boot/event/pageEvent',
method: 'POST', method: 'POST',
publicHeight: 30, showPage: true,
showPage: false, exportName: '暂态事件详情',
exportName: '主要监测点列表',
column: [ column: [
{ {
field: 'index', field: 'index',
@@ -56,75 +84,141 @@ const tableStore: any = new TableStore({
}, },
{ {
title: '暂态时间', title: '暂态时间',
field: 'time', field: 'startTime',
minWidth: '180'
}, },
{ {
title: '测点名称', title: '测点名称',
field: 'name', field: 'lineName',
width: '150' minWidth: '150'
}, },
{ {
title: '暂态类型', title: '暂态类型',
field: 'flicker', field: 'tag',
width: '100', minWidth: '100'
}, },
{ {
title: '特征幅值(%)', title: '特征幅值(%)',
field: 'flicker', field: 'amplitude',
width: '100' minWidth: '100'
}, },
{ {
title: '暂降深度(%)', title: '暂降深度(%)',
field: 'flicker', field: 'depth',
width: '100' minWidth: '100',
formatter: (row: any) => {
// 当暂态类型不是电压暂升时,计算暂降深度 = 100 - 特征幅值
if (row.row.tag !== '电压暂升') {
const amplitude = parseFloat(row.row.amplitude)
if (!isNaN(amplitude)) {
return 100 - amplitude
}
return '-'
} else {
// 电压暂升时不显示暂降深度
return '/'
}
}
}, },
{ {
title: '持续时间(S)', title: '持续时间(S)',
field: 'flicker', field: 'persistTime',
width: '100' minWidth: '100'
}, },
{ {
title: '严重度', title: '严重度',
field: 'flicker', field: 'severity',
width: '80' minWidth: '80'
},
],
beforeSearchFun: () => {},
loadCallback: () => {
tableStore.table.data = [
{
time: '2024-01-01 00:00:00',
name: '35kV进线',
flicker: '0'
}, },
{ {
time: '2024-01-01 00:00:00', title: '波形',
name: '35kV进线', width: '100',
flicker: '0' render: 'buttons',
buttons: [
{
name: 'edit',
text: '波形分析',
type: 'primary',
icon: 'el-icon-DataLine',
render: 'basicButton',
disabled: row => {
return !row.wavePath
},
click: async row => {
row.loading1 = true
loading.value = true
isWaveCharts.value = true
dialogVisible.value = false
// 在打开弹窗时立即设置高度
nextTick(() => {
if (waveFormAnalysisRef.value) {
// waveFormAnalysisRef.value.setHeight(false, 360)
waveFormAnalysisRef.value.setHeight(999, 130, 1.6666666)
}
})
await analyseWave(row.id)
.then(res => {
row.loading1 = false
if (res != undefined) {
boxoList.value = row
// boxoList.value = {
// ...row,
// duration: row.persistTime // 将 persistTime 值赋给 duration
// }
boxoList.value.featureAmplitude =
row.evtParamVVaDepth != '-' ? row.evtParamVVaDepth - 0 : null
boxoList.value.systemType = 'YPT'
wp.value = res.data
}
loading.value = false
})
.catch(() => {
row.loading1 = false
loading.value = false
})
nextTick(() => {
waveFormAnalysisRef.value &&
waveFormAnalysisRef.value.getWpData(wp.value, boxoList.value, true)
})
}
}, },
{ {
time: '2024-01-01 00:00:00', name: 'edit',
name: '35kV进线', text: '暂无波形',
flicker: '0' type: 'info',
icon: 'el-icon-DataLine',
render: 'basicButton',
disabled: row => {
return !!row.wavePath
}
} }
] ]
} }
],
beforeSearchFun: () => {},
loadCallback: () => {}
}) })
tableStore.table.params.searchValue = ''
provide('tableStore', tableStore) provide('tableStore', tableStore)
const open = async (row: any) => { const open = async (time: any) => {
dialogVisible.value = true dialogVisible.value = true
getSimpleLineList()
tableStore.table.params.lineId = ''
nextTick(() => {
tableHeaderRef.value.setInterval(5)
tableHeaderRef.value.setTimeInterval([time, time])
tableStore.table.params.searchBeginTime = time
tableStore.table.params.searchEndTime = time
tableStore.index() tableStore.index()
})
} }
// 点击行 const handleHideCharts = () => {
const cellClickEvent = ({ row, column }: any) => { isWaveCharts.value = false
if (column.field != 'name') { dialogVisible.value = true
harmonicRatioRef.value.openDialog(row)
} }
}
defineExpose({ open }) defineExpose({ open })
</script> </script>

View File

@@ -7,6 +7,7 @@
@selectChange="selectChange" @selectChange="selectChange"
datePicker datePicker
v-if="fullscreen" v-if="fullscreen"
:timeCacheFlag="false"
></TableHeader> ></TableHeader>
<el-calendar <el-calendar
v-model="value" v-model="value"
@@ -14,9 +15,16 @@
height: `calc(${prop.height} - ${headerHeight}px + ${fullscreen ? 0 : 56}px )`, height: `calc(${prop.height} - ${headerHeight}px + ${fullscreen ? 0 : 56}px )`,
overflow: 'auto' overflow: 'auto'
}" }"
v-loading="tableStore.table.loading"
> >
<template #date-cell="{ data }"> <template #date-cell="{ data }">
<div style="height: 100%; padding: 8px" :style="{ background: setBackground(data.day) }"> <div
style="padding: 8px"
:style="{
background: setBackground(data.day),
height: `calc((${prop.height} - 100px - ${headerHeight}px + ${fullscreen ? 0 : 56}px) / 5 )`
}"
>
<p :class="data.isSelected ? 'is-selected' : ''"> <p :class="data.isSelected ? 'is-selected' : ''">
{{ data.day.split('-').slice(2).join('-') }} {{ data.day.split('-').slice(2).join('-') }}
</p> </p>
@@ -31,10 +39,11 @@
</template> </template>
<div <div
style="text-decoration: underline" style="text-decoration: underline"
:style="{ height: `calc(${prop.height} / 5 - 40px)`, overflow: 'auto' }" class="details"
v-for="item in list?.filter((item:any) => item.name == data.day)" v-for="item in list?.filter((item:any) => item.name == data.day)"
@click="descentClick(item)"
> >
<div @click="descentClick">电压暂降:{{ item.eventDown || 0 }}</div> <div>电压暂降:{{ item.eventDown || 0 }}</div>
<div>电压中断:{{ item.eventOff || 0 }}</div> <div>电压中断:{{ item.eventOff || 0 }}</div>
<div>电压暂升:{{ item.eventUp || 0 }}</div> <div>电压暂升:{{ item.eventUp || 0 }}</div>
</div> </div>
@@ -49,12 +58,9 @@
<script setup lang="ts"> <script setup lang="ts">
import { ref, onMounted, provide, reactive, watch, nextTick } from 'vue' import { ref, onMounted, provide, reactive, watch, nextTick } from 'vue'
import TableStore from '@/utils/tableStore' import TableStore from '@/utils/tableStore'
import { getTimeOfTheMonth } from '@/utils/formatTime'
import { dayjs } from 'element-plus' import { dayjs } from 'element-plus'
import TransientList from './components/transientList.vue' import TransientList from './components/transientList.vue'
import TableHeader from '@/components/table/header/index.vue' import TableHeader from '@/components/table/header/index.vue'
import { useRoute } from 'vue-router'
import { useTimeCacheStore } from '@/stores/timeCache'
const prop = defineProps({ const prop = defineProps({
w: { type: [String, Number] }, w: { type: [String, Number] },
@@ -79,11 +85,11 @@ const hasEventData = (day: string) => {
const selectChange = (showSelect: any, height: any, datePickerValue?: any) => { const selectChange = (showSelect: any, height: any, datePickerValue?: any) => {
headerHeight.value = height headerHeight.value = height
// if (datePickerValue && datePickerValue.timeValue) { if (datePickerValue && datePickerValue.timeValue) {
// // 更新时间参数 // 更新时间参数
// tableStore.table.params.searchBeginTime = datePickerValue.timeValue[0] tableStore.table.params.searchBeginTime = datePickerValue.timeValue[0]
// tableStore.table.params.searchEndTime = datePickerValue.timeValue[1] tableStore.table.params.searchEndTime = datePickerValue.timeValue[1]
// } }
} }
// 计算是否全屏展示 // 计算是否全屏展示
@@ -113,13 +119,14 @@ const tableStore: any = new TableStore({
column: [], column: [],
beforeSearchFun: () => { beforeSearchFun: () => {
if (prop.timeValue && Array.isArray(prop.timeValue)) { if (!fullscreen.value && prop.timeValue && Array.isArray(prop.timeValue)) {
tableStore.table.params.searchBeginTime = prop.timeValue[0] tableStore.table.params.searchBeginTime = prop.timeValue[0]
tableStore.table.params.searchEndTime = prop.timeValue[1] tableStore.table.params.searchEndTime = prop.timeValue[1]
} }
}, },
loadCallback: () => { loadCallback: () => {
value.value = tableStore.table.params.searchBeginTime
list.value = tableStore.table.data list.value = tableStore.table.data
} }
}) })
@@ -176,26 +183,31 @@ watch(
) )
// 电压暂降点击事件 // 电压暂降点击事件
const descentClick = () => { const descentClick = (item:any) => {
transientListRef.value.open() transientListRef.value.open(item.name)
} }
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
:deep(.el-calendar) { :deep(.el-calendar) {
.el-calendar__header { .el-calendar__button-group {
display: none; display: none;
} }
.el-calendar__body { .el-calendar__body {
padding: 0px !important; padding: 0px !important;
height: 100%; height: calc(100% - 46px);
.el-calendar-table { .el-calendar-table {
height: 100%; height: 100%;
} }
} }
.el-calendar-day { .el-calendar-day {
// height: calc(912px / 5 );
height: 100%; height: 100%;
padding: 0px; padding: 0px;
overflow: hidden; overflow: hidden;
.details {
height: calc(100% - 20px);
overflow-y: auto;
}
} }
.el-calendar-table__row { .el-calendar-table__row {
.next { .next {

View File

@@ -64,285 +64,143 @@ const config = useConfig()
const echartList = ref({}) const echartList = ref({})
// const echartList = ref({ const echartList1 = ref({})
// options: {
// xAxis: null, // const echartList1 = ref({
// yAxis: null,
// dataZoom: null,
// backgroundColor: '#fff',
// tooltip: {
// // trigger: 'axis'
// textStyle: {
// color: '#fff',
// fontStyle: 'normal',
// opacity: 0.35,
// fontSize: 14
// },
// backgroundColor: 'rgba(0,0,0,0.55)',
// borderWidth: 0,
// formatter: function (params: any) {
// console.log(params)
// var tips = ''
// for (var i = 0; i < params.length; i++) {
// tips += params[i].name + '</br/>'
// tips += '监测点数' + ':' + '&nbsp' + '&nbsp' + params[i].value + '</br/>'
// }
// return tips
// }
// },
// title: { // title: {
// text: '暂态事件概率分布', // text: '越限时间概率分布'
// x: 'center'
// }, // },
// visualMap: { // xAxis: {
// max: 20, // // name: '时间',
// show: false, // // data: ['闪变', '谐波电压', '谐波电流', '电压偏差', '三相不平衡']
// inRange: { // type: 'time',
// color: ['#313695', '#00BB00', '#ff8000', '#a50026']
// }
// },
// xAxis3D: {
// type: 'category',
// name: '特征幅值',
// data: [
// '0-10%',
// '10%-20%',
// '20%-30%',
// '30%-40%',
// '40%-50%',
// '50%-60%',
// '60%-70%',
// '70%-80%',
// '80%-90%',
// '90%-100%'
// ],
// axisLine: {
// lineStyle: {
// color: '#111'
// }
// },
// axisLabel: { // axisLabel: {
// color: '#111' // formatter: {
// } // day: '{MM}-{dd}',
// }, // month: '{MM}',
// yAxis3D: { // year: '{yyyy}'
// type: 'category',
// name: '持续时间',
// data: ['0-0.01s', '0.01s-0.1s', '0.1s-1s', '1s-10s', '10s'],
// nameTextStyle: {
// color: '#111'
// },
// axisLine: {
// show: true,
// lineStyle: {
// color: '#111'
// }
// },
// axisLabel: {
// color: '#111'
// },
// splitLine: {
// lineStyle: {
// // 使用深浅的间隔色
// color: ['#111'],
// type: 'dashed',
// opacity: 0.5
// } // }
// } // }
// }, // },
// zAxis3D: {
// type: 'value', // yAxis: {
// splitNumber: 10, // name: '次' // 给X轴加单位
// minInterval: 10,
// name: '暂态事件次数'
// }, // },
// grid3D: { // grid: {
// viewControl: { // left: '10px',
// projection: 'perspective', // right: '20px'
// distance: 250
// },
// boxWidth: 200,
// boxDepth: 80,
// light: {
// main: {
// intensity: 1.2
// },
// ambient: {
// intensity: 0.3
// }
// }
// }, // },
// options: {
// series: [ // series: [
// { // {
// type: 'bar3D', // type: 'line',
// showSymbol: false,
// // smooth: true,
// name: '电压中断',
// color: '#FF9100',
// data: [ // data: [
// [0, 0, 1], // ['2025-10-16 07:00:00', 10],
// [0, 1, 1], // ['2025-10-16 07:15:00', 10],
// [0.2, 1] // ['2025-10-16 07:30:00', 10],
// ], // ['2025-10-16 07:45:00', 10],
// shading: 'realistic', // ['2025-10-16 08:00:00', 30],
// label: { // ['2025-10-16 08:15:00', 50],
// show: false, // ['2025-10-16 08:30:00', 60],
// textStyle: { // ['2025-10-16 08:45:00', 70],
// fontSize: 16, // ['2025-10-16 09:00:00', 100],
// borderWidth: 1 // ['2025-10-16 09:15:00', 120],
// } // ['2025-10-16 09:30:00', 130],
// ['2025-10-16 09:45:00', 140],
// ['2025-10-16 10:00:00', 160],
// ['2025-10-16 10:15:00', 160],
// ['2025-10-16 10:30:00', 130],
// ['2025-10-16 10:45:00', 120],
// ['2025-10-16 11:00:00', 140],
// ['2025-10-16 11:15:00', 80],
// ['2025-10-16 11:30:00', 70],
// ['2025-10-16 11:45:00', 90],
// ['2025-10-16 12:00:00', 60],
// ['2025-10-16 12:15:00', 60],
// ['2025-10-16 12:30:00', 60],
// ['2025-10-16 12:45:00', 60]
// ]
// }, // },
// {
// itemStyle: { // type: 'line',
// opacity: 1 // showSymbol: false,
// // smooth: true,
// color: '#FFBF00',
// name: '电压暂降',
// data: [
// ['2025-10-16 07:00:00', 1],
// ['2025-10-16 07:15:00', 1],
// ['2025-10-16 07:30:00', 1],
// ['2025-10-16 07:45:00', 1],
// ['2025-10-16 08:00:00', 3],
// ['2025-10-16 08:15:00', 5],
// ['2025-10-16 08:30:00', 6],
// ['2025-10-16 08:45:00', 7],
// ['2025-10-16 09:00:00', 10],
// ['2025-10-16 09:15:00', 12],
// ['2025-10-16 09:30:00', 13],
// ['2025-10-16 09:45:00', 14],
// ['2025-10-16 10:00:00', 16],
// ['2025-10-16 10:15:00', 16],
// ['2025-10-16 10:30:00', 13],
// ['2025-10-16 10:45:00', 12],
// ['2025-10-16 11:00:00', 14],
// ['2025-10-16 11:15:00', 8],
// ['2025-10-16 11:30:00', 7],
// ['2025-10-16 11:45:00', 9],
// ['2025-10-16 12:00:00', 6],
// ['2025-10-16 12:15:00', 6],
// ['2025-10-16 12:30:00', 6],
// ['2025-10-16 12:45:00', 6]
// ]
// }, // },
// emphasis: { // {
// label: { // type: 'line',
// textStyle: { // showSymbol: false,
// fontSize: 20, // // smooth: true,
// color: '#900' // name: '电压暂升',
// } // color: config.layout.elementUiPrimary[0],
// }, // data: [
// itemStyle: { // ['2025-10-16 07:00:00', 19],
// color: '#900' // ['2025-10-16 07:15:00', 19],
// } // ['2025-10-16 07:30:00', 19],
// } // ['2025-10-16 07:45:00', 19],
// ['2025-10-16 08:00:00', 39],
// ['2025-10-16 08:15:00', 59],
// ['2025-10-16 08:30:00', 69],
// ['2025-10-16 08:45:00', 79],
// ['2025-10-16 09:00:00', 109],
// ['2025-10-16 09:15:00', 129],
// ['2025-10-16 09:30:00', 139],
// ['2025-10-16 09:45:00', 149],
// ['2025-10-16 10:00:00', 169],
// ['2025-10-16 10:15:00', 169],
// ['2025-10-16 10:30:00', 139],
// ['2025-10-16 10:45:00', 129],
// ['2025-10-16 11:00:00', 149],
// ['2025-10-16 11:15:00', 89],
// ['2025-10-16 11:30:00', 79],
// ['2025-10-16 11:45:00', 99],
// ['2025-10-16 12:00:00', 69],
// ['2025-10-16 12:15:00', 69],
// ['2025-10-16 12:30:00', 69],
// ['2025-10-16 12:45:00', 69]
// ]
// } // }
// ] // ]
// } // }
// }) // })
const echartList1 = ref({
title: {
text: '越限时间概率分布'
},
xAxis: {
// name: '时间',
// data: ['闪变', '谐波电压', '谐波电流', '电压偏差', '三相不平衡']
type: 'time',
axisLabel: {
formatter: {
day: '{MM}-{dd}',
month: '{MM}',
year: '{yyyy}'
}
}
},
yAxis: {
name: '次' // 给X轴加单位
},
grid: {
left: '10px',
right: '20px'
},
options: {
series: [
{
type: 'line',
showSymbol: false,
// smooth: true,
name: '电压中断',
color: '#FF9100',
data: [
['2025-10-16 07:00:00', 10],
['2025-10-16 07:15:00', 10],
['2025-10-16 07:30:00', 10],
['2025-10-16 07:45:00', 10],
['2025-10-16 08:00:00', 30],
['2025-10-16 08:15:00', 50],
['2025-10-16 08:30:00', 60],
['2025-10-16 08:45:00', 70],
['2025-10-16 09:00:00', 100],
['2025-10-16 09:15:00', 120],
['2025-10-16 09:30:00', 130],
['2025-10-16 09:45:00', 140],
['2025-10-16 10:00:00', 160],
['2025-10-16 10:15:00', 160],
['2025-10-16 10:30:00', 130],
['2025-10-16 10:45:00', 120],
['2025-10-16 11:00:00', 140],
['2025-10-16 11:15:00', 80],
['2025-10-16 11:30:00', 70],
['2025-10-16 11:45:00', 90],
['2025-10-16 12:00:00', 60],
['2025-10-16 12:15:00', 60],
['2025-10-16 12:30:00', 60],
['2025-10-16 12:45:00', 60]
]
},
{
type: 'line',
showSymbol: false,
// smooth: true,
color: '#FFBF00',
name: '电压暂降',
data: [
['2025-10-16 07:00:00', 1],
['2025-10-16 07:15:00', 1],
['2025-10-16 07:30:00', 1],
['2025-10-16 07:45:00', 1],
['2025-10-16 08:00:00', 3],
['2025-10-16 08:15:00', 5],
['2025-10-16 08:30:00', 6],
['2025-10-16 08:45:00', 7],
['2025-10-16 09:00:00', 10],
['2025-10-16 09:15:00', 12],
['2025-10-16 09:30:00', 13],
['2025-10-16 09:45:00', 14],
['2025-10-16 10:00:00', 16],
['2025-10-16 10:15:00', 16],
['2025-10-16 10:30:00', 13],
['2025-10-16 10:45:00', 12],
['2025-10-16 11:00:00', 14],
['2025-10-16 11:15:00', 8],
['2025-10-16 11:30:00', 7],
['2025-10-16 11:45:00', 9],
['2025-10-16 12:00:00', 6],
['2025-10-16 12:15:00', 6],
['2025-10-16 12:30:00', 6],
['2025-10-16 12:45:00', 6]
]
},
{
type: 'line',
showSymbol: false,
// smooth: true,
name: '电压暂升',
color: config.layout.elementUiPrimary[0],
data: [
['2025-10-16 07:00:00', 19],
['2025-10-16 07:15:00', 19],
['2025-10-16 07:30:00', 19],
['2025-10-16 07:45:00', 19],
['2025-10-16 08:00:00', 39],
['2025-10-16 08:15:00', 59],
['2025-10-16 08:30:00', 69],
['2025-10-16 08:45:00', 79],
['2025-10-16 09:00:00', 109],
['2025-10-16 09:15:00', 129],
['2025-10-16 09:30:00', 139],
['2025-10-16 09:45:00', 149],
['2025-10-16 10:00:00', 169],
['2025-10-16 10:15:00', 169],
['2025-10-16 10:30:00', 139],
['2025-10-16 10:45:00', 129],
['2025-10-16 11:00:00', 149],
['2025-10-16 11:15:00', 89],
['2025-10-16 11:30:00', 79],
['2025-10-16 11:45:00', 99],
['2025-10-16 12:00:00', 69],
['2025-10-16 12:15:00', 69],
['2025-10-16 12:30:00', 69],
['2025-10-16 12:45:00', 69]
]
}
]
}
})
const processDataForChart = (rawData: any[]) => { const processDataForChart = (rawData: any[]) => {
// 将后端返回的扁平数据转换为 ECharts 需要的三维坐标格式 [x, y, z] // 将后端返回的扁平数据转换为 ECharts 需要的三维坐标格式 [x, y, z]
const chartData = rawData.map(item => [item.x, item.y, item.z]); const chartData = rawData.map(item => [item.x, item.y, item.z])
return chartData; return chartData
}; }
const tableStore: any = new TableStore({ const tableStore: any = new TableStore({
url: '/cs-harmonic-boot/csevent/getEventCoords', url: '/cs-harmonic-boot/csevent/getEventCoords',
@@ -354,7 +212,57 @@ const tableStore: any = new TableStore({
tableStore.table.params.searchEndTime = tableStore.table.params.searchEndTime || prop.timeValue?.[1] tableStore.table.params.searchEndTime = tableStore.table.params.searchEndTime || prop.timeValue?.[1]
}, },
loadCallback: () => { loadCallback: () => {
const processedData = processDataForChart(tableStore.table.data || []); const processedData = processDataForChart(tableStore.table.data.innerList || [])
const trendList = tableStore.table.data.trendList || []
const xlist = tableStore.table.data.xlist || []
// 处理趋势图数据
const seriesData = trendList.map((item: any) => {
// 根据接口返回的name字段确定系列名称和颜色
let name = ''
let color = ''
switch (item.name) {
case 'Evt_Sys_DipStr':
name = '电压暂降'
color = '#FFBF00'
break
case 'Evt_Sys_IntrStr':
name = '电压中断'
color = '#FF9100'
break
case 'Evt_Sys_SwlStr':
name = '电压暂升'
color = config.layout.elementUiPrimary[0]
break
default:
name = item.name
color = '#000000'
}
return {
name: name,
type: 'line',
showSymbol: false,
color: color,
data: item.trendList?.map((value: number, index: number) => [xlist[index], value]) || []
}
})
// 获取x轴和y轴的标签值
const xLabels = [
'0-10%',
'10%-20%',
'20%-30%',
'30%-40%',
'40%-50%',
'50%-60%',
'60%-70%',
'70%-80%',
'80%-90%',
'90%-100%'
]
const yLabels = ['0-0.01s', '0.01s-0.1s', '0.1s-1s', '1s-10s', '10s']
echartList.value = { echartList.value = {
options: { options: {
@@ -372,10 +280,9 @@ const tableStore: any = new TableStore({
backgroundColor: 'rgba(0,0,0,0.55)', backgroundColor: 'rgba(0,0,0,0.55)',
borderWidth: 0, borderWidth: 0,
formatter: function (params: any) { formatter: function (params: any) {
console.log(params,'333455')
var tips = '' var tips = ''
tips += '持续时间: ' + params.value[1] + '</br>' tips += '持续时间: ' + yLabels[params.value[1]] + '</br>'
tips += '特征幅值: ' + params.seriesName + '</br>' tips += '特征幅值: ' + xLabels[params.value[0]] + '</br>'
tips += '事件次数: ' + params.value[2] + '</br>' tips += '事件次数: ' + params.value[2] + '</br>'
return tips return tips
} }
@@ -385,7 +292,7 @@ const tableStore: any = new TableStore({
x: 'center' x: 'center'
}, },
visualMap: { visualMap: {
max: 500, // 根据实际数据调整最大值 max: 500,
show: false, show: false,
inRange: { inRange: {
color: ['#313695', '#00BB00', '#ff8000', '#a50026'] color: ['#313695', '#00BB00', '#ff8000', '#a50026']
@@ -394,18 +301,7 @@ const tableStore: any = new TableStore({
xAxis3D: { xAxis3D: {
type: 'category', type: 'category',
name: '特征幅值', name: '特征幅值',
data: [ data: xLabels,
'0-10%',
'10%-20%',
'20%-30%',
'30%-40%',
'40%-50%',
'50%-60%',
'60%-70%',
'70%-80%',
'80%-90%',
'90%-100%'
],
axisLine: { axisLine: {
lineStyle: { lineStyle: {
color: '#111' color: '#111'
@@ -418,7 +314,7 @@ const tableStore: any = new TableStore({
yAxis3D: { yAxis3D: {
type: 'category', type: 'category',
name: '持续时间', name: '持续时间',
data: ['0-0.01s', '0.01s-0.1s', '0.1s-1s', '1s-10s', '10s'], data: yLabels,
nameTextStyle: { nameTextStyle: {
color: '#111' color: '#111'
}, },
@@ -464,7 +360,7 @@ const tableStore: any = new TableStore({
series: [ series: [
{ {
type: 'bar3D', type: 'bar3D',
data: processedData, // 使用处理后的数据 data: processedData,
shading: 'realistic', shading: 'realistic',
label: { label: {
show: false, show: false,
@@ -491,6 +387,27 @@ const tableStore: any = new TableStore({
] ]
} }
} }
echartList1.value = {
title: {
text: '越限时间概率分布'
},
xAxis: {
type: 'category',
data: xlist,
axisLabel: {
formatter: '{value}'
}
},
yAxis: {
name: '次'
},
grid: {
left: '10px',
right: '20px'
},
series: seriesData
}
} }
}) })

View File

@@ -2,14 +2,10 @@
<div> <div>
<!-- 暂态事件详情 --> <!-- 暂态事件详情 -->
<el-dialog draggable title="暂态事件详情 " v-model="dialogVisible" append-to-body width="70%"> <el-dialog draggable title="暂态事件详情 " v-model="dialogVisible" append-to-body width="70%">
<TableHeader datePicker showExport :showReset="false"> <TableHeader datePicker showExport :showReset="false" ref="tableHeaderRef" @selectChange="selectChange">
<template v-slot:select> <template v-slot:select>
<el-form-item label="监测点名称"> <el-form-item label="监测点">
<el-select <el-select v-model="tableStore.table.params.lineId" placeholder="请选择监测点名称">
v-model="tableStore.table.params.searchValue"
placeholder="请选择监测点名称"
style="width: 240px"
>
<el-option <el-option
v-for="item in options" v-for="item in options"
:key="item.value" :key="item.value"
@@ -20,15 +16,22 @@
</el-form-item> </el-form-item>
</template> </template>
</TableHeader> </TableHeader>
<Table ref="tableRef" @cell-click="cellClickEvent" isGroup :height="height"></Table> <Table ref="tableRef" isGroup :height="heightRef"></Table>
</el-dialog> </el-dialog>
<!-- 查看波形 --> <!-- 查看波形 -->
<el-dialog v-model="isWaveCharts" draggable title="瞬时/RMS波形" append-to-body width="70%"> <el-dialog
v-model="isWaveCharts"
draggable
title="波形分析"
append-to-body
width="70%"
@close="handleHideCharts"
>
<waveFormAnalysis <waveFormAnalysis
v-loading="loading" v-loading="loading"
v-if="isWaveCharts" v-if="isWaveCharts"
ref="waveFormAnalysisRef" ref="waveFormAnalysisRef"
@handleHideCharts="isWaveCharts = false" @handleHideCharts="handleHideCharts"
:wp="wp" :wp="wp"
/> />
</el-dialog> </el-dialog>
@@ -42,6 +45,8 @@ import TableStore from '@/utils/tableStore'
import { mainHeight } from '@/utils/layout' import { mainHeight } from '@/utils/layout'
import waveFormAnalysis from '@/views/govern/device/control/tabs/components/waveFormAnalysis.vue' import waveFormAnalysis from '@/views/govern/device/control/tabs/components/waveFormAnalysis.vue'
import { analyseWave } from '@/api/common' import { analyseWave } from '@/api/common'
import { getSimpleLine } from '@/api/harmonic-boot/cockpit/cockpit'
const dialogVisible: any = ref(false) const dialogVisible: any = ref(false)
const waveFormAnalysisRef: any = ref(null) const waveFormAnalysisRef: any = ref(null)
// 波形 // 波形
@@ -50,18 +55,24 @@ const loading = ref(false)
const wp = ref({}) const wp = ref({})
const boxoList: any = ref({}) const boxoList: any = ref({})
const options = [ const tableHeaderRef = ref()
{
value: '35kV进线', const options = ref()
label: '35kV进线' const heightRef = ref(mainHeight(168, 2.1).height)
const selectChange = (flag: boolean, h: any) => {
heightRef.value = mainHeight(h, 2.1).height
} }
]
const height = mainHeight(0, 2).height as any const getSimpleLineList = async () => {
const res = await getSimpleLine()
options.value = res.data
}
const tableStore: any = new TableStore({ const tableStore: any = new TableStore({
url: '/user-boot/role/selectRoleDetail?id=0', url: '/cs-harmonic-boot/event/pageEvent',
method: 'POST', method: 'POST',
publicHeight: 30, showPage: true,
showPage: false,
exportName: '主要监测点列表', exportName: '主要监测点列表',
column: [ column: [
{ {
@@ -74,36 +85,50 @@ const tableStore: any = new TableStore({
}, },
{ {
title: '暂态时间', title: '暂态时间',
field: 'time' field: 'startTime',
minWidth: '150'
}, },
{ {
title: '测点名称', title: '测点名称',
field: 'name', field: 'lineName',
width: '150' width: '150'
}, },
{ {
title: '暂态类型', title: '暂态类型',
field: 'flicker', field: 'tag',
width: '100' width: '100'
}, },
{ {
title: '特征幅值(%)', title: '特征幅值(%)',
field: 'flicker', field: 'amplitude',
width: '100' width: '100'
}, },
{ {
title: '暂降深度(%)', title: '暂降深度(%)',
field: 'flicker', field: 'depth',
width: '100' width: '100',
formatter: (row: any) => {
// 当暂态类型不是电压暂升时,计算暂降深度 = 100 - 特征幅值
if (row.row.tag !== '电压暂升') {
const amplitude = parseFloat(row.row.amplitude)
if (!isNaN(amplitude)) {
return 100 - amplitude
}
return '-'
} else {
// 电压暂升时不显示暂降深度
return '/'
}
}
}, },
{ {
title: '持续时间(S)', title: '持续时间(S)',
field: 'flicker', field: 'persistTime',
width: '100' width: '100'
}, },
{ {
title: '严重度', title: '严重度',
field: 'flicker', field: 'severity',
width: '80' width: '80'
}, },
{ {
@@ -112,27 +137,39 @@ const tableStore: any = new TableStore({
render: 'buttons', render: 'buttons',
buttons: [ buttons: [
{ {
name: 'check', name: 'edit',
title: '查看波形', text: '波形分析',
type: 'primary', type: 'primary',
icon: 'el-icon-EditPen', icon: 'el-icon-DataLine',
render: 'basicButton', render: 'basicButton',
loading: 'loading1', disabled: row => {
// disabled: row => { return !row.wavePath
// return !row.wavePath },
// },
click: async row => { click: async row => {
row.loading1 = true row.loading1 = true
loading.value = true loading.value = true
isWaveCharts.value = true isWaveCharts.value = true
dialogVisible.value = false
// 在打开弹窗时立即设置高度
nextTick(() => {
if (waveFormAnalysisRef.value) {
// waveFormAnalysisRef.value.setHeight(false, 360)
waveFormAnalysisRef.value.setHeight(999, 130, 1.6666666)
}
})
await analyseWave(row.id) await analyseWave(row.id)
.then(res => { .then(res => {
row.loading1 = false row.loading1 = false
if (res != undefined) { if (res != undefined) {
boxoList.value = row boxoList.value = row
// boxoList.value = {
// ...row,
// duration: row.persistTime // 将 persistTime 值赋给 duration
// }
boxoList.value.featureAmplitude = boxoList.value.featureAmplitude =
row.evtParamVVaDepth != '-' ? row.evtParamVVaDepth - 0 : null row.evtParamVVaDepth != '-' ? row.evtParamVVaDepth - 0 : null
boxoList.value.systemType = 'WX' boxoList.value.systemType = 'YPT'
wp.value = res.data wp.value = res.data
} }
loading.value = false loading.value = false
@@ -147,44 +184,40 @@ const tableStore: any = new TableStore({
waveFormAnalysisRef.value.getWpData(wp.value, boxoList.value, true) waveFormAnalysisRef.value.getWpData(wp.value, boxoList.value, true)
}) })
} }
},
{
name: 'edit',
text: '暂无波形',
type: 'info',
icon: 'el-icon-DataLine',
render: 'basicButton',
disabled: row => {
return !(!row.wavePath && row.evtParamTm < 20)
}
} }
] ]
} }
], ],
beforeSearchFun: () => {}, beforeSearchFun: () => {},
loadCallback: () => { loadCallback: () => {}
tableStore.table.data = [
{
time: '2024-01-01 00:00:00',
name: '35kV进线',
flicker: '0'
},
{
time: '2024-01-01 00:00:00',
name: '35kV进线',
flicker: '0'
},
{
time: '2024-01-01 00:00:00',
name: '35kV进线',
flicker: '0'
}
]
}
}) })
tableStore.table.params.searchValue = ''
provide('tableStore', tableStore) provide('tableStore', tableStore)
const open = async (row: any) => { const open = async (row: any, searchBeginTime: any, searchEndTime: any) => {
dialogVisible.value = true dialogVisible.value = true
getSimpleLineList()
tableStore.table.params.lineId = row.id
nextTick(() => {
tableHeaderRef.value.setTimeInterval([searchBeginTime, searchEndTime])
tableStore.table.params.searchBeginTime = searchBeginTime
tableStore.table.params.searchEndTime = searchEndTime
tableStore.index() tableStore.index()
})
} }
// 点击行 const handleHideCharts = () => {
const cellClickEvent = ({ row, column }: any) => { isWaveCharts.value = false
if (column.field != 'name') { dialogVisible.value = true
isWaveCharts.value = true
}
} }
defineExpose({ open }) defineExpose({ open })

View File

@@ -24,12 +24,9 @@ import { ref, onMounted, provide, reactive, watch, h } from 'vue'
import TableStore from '@/utils/tableStore' import TableStore from '@/utils/tableStore'
import Table from '@/components/table/index.vue' import Table from '@/components/table/index.vue'
import MyEchart from '@/components/echarts/MyEchart.vue' import MyEchart from '@/components/echarts/MyEchart.vue'
import { getTimeOfTheMonth } from '@/utils/formatTime'
import { useConfig } from '@/stores/config' import { useConfig } from '@/stores/config'
import TransientStatisticsDetail from '@/components/cockpit/transientStatistics/components/transientStatisticsDetail.vue' import TransientStatisticsDetail from '@/components/cockpit/transientStatistics/components/transientStatisticsDetail.vue'
import TableHeader from '@/components/table/header/index.vue' import TableHeader from '@/components/table/header/index.vue'
import { useRoute } from 'vue-router'
import { useTimeCacheStore } from '@/stores/timeCache'
import { netEventEcharts } from '@/api/harmonic-boot/cockpit/cockpit' import { netEventEcharts } from '@/api/harmonic-boot/cockpit/cockpit'
const prop = defineProps({ const prop = defineProps({
@@ -76,7 +73,7 @@ const eventEcharts = () => {
searchEndTime: tableStore.table.params.searchEndTime || prop.timeValue?.[1] searchEndTime: tableStore.table.params.searchEndTime || prop.timeValue?.[1]
}).then(res => { }).then(res => {
// 整理接口数据为图表所需格式 // 整理接口数据为图表所需格式
const rawData = res.data || {}; const rawData = res.data || {}
data.value = [ data.value = [
{ {
name: '电压中断', name: '电压中断',
@@ -90,7 +87,7 @@ const eventEcharts = () => {
name: '电压暂升', name: '电压暂升',
value: rawData.eventUp || 0 value: rawData.eventUp || 0
} }
]; ]
echartList.value = { echartList.value = {
title: {}, title: {},
@@ -124,7 +121,7 @@ const eventEcharts = () => {
left: 'center' left: 'center'
}, },
{ {
text: (rawData.eventOff + rawData.eventDown + rawData.eventUp) + '次', text: rawData.eventOff + rawData.eventDown + rawData.eventUp + '次',
left: 'center', left: 'center',
top: 'center' top: 'center'
} }
@@ -174,6 +171,7 @@ const tableStore: any = new TableStore({
title: '电压中断(次)', title: '电压中断(次)',
field: 'eventOff', field: 'eventOff',
minWidth: '70', minWidth: '70',
sortable: true,
render: 'customTemplate', render: 'customTemplate',
customTemplate: (row: any) => { customTemplate: (row: any) => {
return `<span style='cursor: pointer;text-decoration: underline;'>${row.eventOff}</span>` return `<span style='cursor: pointer;text-decoration: underline;'>${row.eventOff}</span>`
@@ -183,6 +181,7 @@ const tableStore: any = new TableStore({
title: '电压暂降(次)', title: '电压暂降(次)',
field: 'eventDown', field: 'eventDown',
minWidth: '80', minWidth: '80',
sortable: true,
render: 'customTemplate', render: 'customTemplate',
customTemplate: (row: any) => { customTemplate: (row: any) => {
return `<span style='cursor: pointer;text-decoration: underline;'>${row.eventDown}</span>` return `<span style='cursor: pointer;text-decoration: underline;'>${row.eventDown}</span>`
@@ -192,6 +191,7 @@ const tableStore: any = new TableStore({
title: '电压暂升(次)', title: '电压暂升(次)',
field: 'eventUp', field: 'eventUp',
minWidth: '80', minWidth: '80',
sortable: true,
render: 'customTemplate', render: 'customTemplate',
customTemplate: (row: any) => { customTemplate: (row: any) => {
return `<span style='cursor: pointer;text-decoration: underline;'>${row.eventUp}</span>` return `<span style='cursor: pointer;text-decoration: underline;'>${row.eventUp}</span>`
@@ -215,7 +215,11 @@ provide('tableStore', tableStore)
// 点击行 // 点击行
const cellClickEvent = ({ row, column }: any) => { const cellClickEvent = ({ row, column }: any) => {
if (column.field != 'name') { if (column.field != 'name') {
transientStatisticsDetailRef.value.open(row) transientStatisticsDetailRef.value.open(
row,
tableStore.table.params.searchBeginTime || prop.timeValue?.[0],
tableStore.table.params.searchEndTime || prop.timeValue?.[1]
)
} }
} }

View File

@@ -68,7 +68,6 @@
width: prop.width, width: prop.width,
height: `calc(${prop.height} - ${headerHeight}px + ${fullscreen ? 0 : 56}px)` height: `calc(${prop.height} - ${headerHeight}px + ${fullscreen ? 0 : 56}px)`
}" }"
v-if="showEchart"
/> />
</div> </div>
</template> </template>
@@ -116,8 +115,6 @@ const indicatorList = ref()
const echartList = ref() const echartList = ref()
const showEchart = ref(true)
const headerHeight = ref(57) const headerHeight = ref(57)
// 监测对象 // 监测对象
@@ -209,13 +206,7 @@ const setEchart = () => {
data: beforeGroupedByPhase[phase], data: beforeGroupedByPhase[phase],
itemStyle: { itemStyle: {
normal: { normal: {
color: function (params: any) { color: color
if (params.value[1] == 0 || params.value[1] == 3.14159) {
return '#ccc'
} else {
return color
}
}
} }
}, },
lineStyle: { lineStyle: {
@@ -240,13 +231,7 @@ const setEchart = () => {
data: afterGroupedByPhase[phase], data: afterGroupedByPhase[phase],
itemStyle: { itemStyle: {
normal: { normal: {
color: function (params: any) { color:color
if (params.value[1] == 0 || params.value[1] == 3.14159) {
return '#ccc'
} else {
return color
}
}
} }
}, },
lineStyle: { lineStyle: {
@@ -371,8 +356,6 @@ const tableStore: any = new TableStore({
chartsListBefore.value = tableStore.table.data.before chartsListBefore.value = tableStore.table.data.before
chartsListAfter.value = tableStore.table.data.after chartsListAfter.value = tableStore.table.data.after
setEchart() setEchart()
} else if (tableStore.table.data) {
showEchart.value = false
} }
} }
}) })

View File

@@ -1,51 +1,51 @@
// 辅助函数 // 辅助函数
const getMax = (temp, tempA, tempB, tempC) => { const getMax = (temp, tempA, tempB, tempC) => {
temp = temp > tempA ? temp : tempA; temp = temp > tempA ? temp : tempA
temp = temp > tempB ? temp : tempB; temp = temp > tempB ? temp : tempB
if (tempC !== undefined) { if (tempC !== undefined) {
temp = temp > tempC ? temp : tempC; temp = temp > tempC ? temp : tempC
}
return temp
} }
return temp;
};
const getMaxTwo = (temp, tempA, tempB) => { const getMaxTwo = (temp, tempA, tempB) => {
temp = temp > tempA ? temp : tempA; temp = temp > tempA ? temp : tempA
temp = temp > tempB ? temp : tempB; temp = temp > tempB ? temp : tempB
return temp; return temp
}; }
const getMin = (temp, tempA, tempB, tempC) => { const getMin = (temp, tempA, tempB, tempC) => {
temp = temp < tempA ? temp : tempA; temp = temp < tempA ? temp : tempA
temp = temp < tempB ? temp : tempB; temp = temp < tempB ? temp : tempB
if (tempC !== undefined) { if (tempC !== undefined) {
temp = temp < tempC ? temp : tempC; temp = temp < tempC ? temp : tempC
}
return temp
} }
return temp;
};
const getMinOpen = (temp, tempA, tempB) => { const getMinOpen = (temp, tempA, tempB) => {
temp = temp < tempA ? temp : tempA; temp = temp < tempA ? temp : tempA
temp = temp < tempB ? temp : tempB; temp = temp < tempB ? temp : tempB
return temp; return temp
}; }
// 数据处理函数 // 数据处理函数
const fliteWaveData = (wp, step, iphasicValue, isOpen) => { const fliteWaveData = (wp, step, iphasicValue, isOpen) => {
const rmsData = wp.listRmsData; const rmsData = wp.listRmsData
const pt = Number(wp.pt) / 1000; const pt = Number(wp.pt) / 1000
const ct = Number(wp.ct); const ct = Number(wp.ct)
const titleList = wp.waveTitle; const titleList = wp.waveTitle
let xishu = pt; let xishu = pt
let aTitle = "", let aTitle = '',
bTitle = "", bTitle = '',
cTitle = "", cTitle = '',
unit = "电压"; unit = '电压'
let rmsvFirstX = 0, let rmsvFirstX = 0,
rmsvFirstY = 0, rmsvFirstY = 0,
rmsvSecondX = 0, rmsvSecondX = 0,
rmsvSecondY = 0, rmsvSecondY = 0,
firstZhou = "a", firstZhou = 'a',
secondeZhou = "a"; secondeZhou = 'a'
let ifmax = 0, let ifmax = 0,
ifmin = 0, ifmin = 0,
ismax = 0, ismax = 0,
@@ -53,176 +53,172 @@ const fliteWaveData = (wp, step, iphasicValue, isOpen) => {
rfmax = 0, rfmax = 0,
rfmin = 0, rfmin = 0,
rsmax = 0, rsmax = 0,
rsmin = 0; rsmin = 0
const shunshiFA = []; const shunshiFA = []
const shunshiFB = []; const shunshiFB = []
const shunshiFC = []; const shunshiFC = []
const shunshiSA = []; const shunshiSA = []
const shunshiSB = []; const shunshiSB = []
const shunshiSC = []; const shunshiSC = []
const rmsFA = []; const rmsFA = []
const rmsFB = []; const rmsFB = []
const rmsFC = []; const rmsFC = []
const rmsSA = []; const rmsSA = []
const rmsSB = []; const rmsSB = []
const rmsSC = []; const rmsSC = []
if (titleList[iphasicValue * step + 1]?.substring(0, 1) !== 'U') {
xishu = ct
if (titleList[iphasicValue * step + 1]?.substring(0, 1) !== "U") { unit = '电流'
xishu = ct;
unit = "电流";
} }
for (let i = 1; i <= iphasicValue; i++) { for (let i = 1; i <= iphasicValue; i++) {
switch (i) { switch (i) {
case 1: case 1:
aTitle = titleList[iphasicValue * step + i]?.substring(1) || ""; aTitle = titleList[iphasicValue * step + i]?.substring(1) || ''
break; break
case 2: case 2:
bTitle = titleList[iphasicValue * step + i]?.substring(1) || ""; bTitle = titleList[iphasicValue * step + i]?.substring(1) || ''
break; break
case 3: case 3:
cTitle = titleList[iphasicValue * step + i]?.substring(1) || ""; cTitle = titleList[iphasicValue * step + i]?.substring(1) || ''
break; break
} }
} }
if (rmsData[0] && rmsData[0][iphasicValue * step + 1] !== undefined) { if (rmsData[0] && rmsData[0][iphasicValue * step + 1] !== undefined) {
rfmax = rmsData[0][iphasicValue * step + 1] * xishu; rfmax = rmsData[0][iphasicValue * step + 1] * xishu
rfmin = rmsData[0][iphasicValue * step + 1] * xishu; rfmin = rmsData[0][iphasicValue * step + 1] * xishu
rmsvFirstY = rmsData[0][iphasicValue * step + 1] * xishu; rmsvFirstY = rmsData[0][iphasicValue * step + 1] * xishu
rmsvFirstX = rmsData[0][0]; rmsvFirstX = rmsData[0][0]
rsmax = rmsData[0][iphasicValue * step + 1]; rsmax = rmsData[0][iphasicValue * step + 1]
rsmin = rmsData[0][iphasicValue * step + 1]; rsmin = rmsData[0][iphasicValue * step + 1]
rmsvSecondY = rmsData[0][iphasicValue * step + 1]; rmsvSecondY = rmsData[0][iphasicValue * step + 1]
rmsvSecondX = rmsData[0][0]; rmsvSecondX = rmsData[0][0]
} }
for (let rms = 0; rms < rmsData.length; rms++) { for (let rms = 0; rms < rmsData.length; rms++) {
if (!rmsData[rms] || rmsData[rms][iphasicValue * step + 1] === undefined) { if (!rmsData[rms] || rmsData[rms][iphasicValue * step + 1] === undefined) {
break; break
} }
switch (iphasicValue) { switch (iphasicValue) {
case 1: case 1:
const rmsFirstA = rmsData[rms][iphasicValue * step + 1] * xishu; const rmsFirstA = rmsData[rms][iphasicValue * step + 1] * xishu
rmsFA.push([rmsData[rms][0], rmsFirstA]); rmsFA.push([rmsData[rms][0], rmsFirstA])
rfmax = rfmax > rmsFirstA ? rfmax : rmsFirstA; rfmax = rfmax > rmsFirstA ? rfmax : rmsFirstA
rfmin = rfmin < rmsFirstA ? rfmin : rmsFirstA; rfmin = rfmin < rmsFirstA ? rfmin : rmsFirstA
if (rfmin < rmsvFirstY) { if (rfmin < rmsvFirstY) {
rmsvFirstY = rfmin; rmsvFirstY = rfmin
firstZhou = "a"; firstZhou = 'a'
rmsvFirstX = rmsData[rms][0]; rmsvFirstX = rmsData[rms][0]
} }
const rmsSecondA = rmsData[rms][iphasicValue * step + 1]; const rmsSecondA = rmsData[rms][iphasicValue * step + 1]
rmsSA.push([rmsData[rms][0], rmsSecondA]); rmsSA.push([rmsData[rms][0], rmsSecondA])
rsmax = rsmax > rmsSecondA ? rsmax : rmsSecondA; rsmax = rsmax > rmsSecondA ? rsmax : rmsSecondA
rsmin = rsmin < rmsSecondA ? rsmin : rmsSecondA; rsmin = rsmin < rmsSecondA ? rsmin : rmsSecondA
if (rsmin < rmsvSecondY) { if (rsmin < rmsvSecondY) {
rmsvSecondY = rsmin; rmsvSecondY = rsmin
secondeZhou = "a"; secondeZhou = 'a'
rmsvSecondX = rmsData[rms][0]; rmsvSecondX = rmsData[rms][0]
} }
break; break
case 2: case 2:
const rmsFirstA2 = rmsData[rms][iphasicValue * step + 1] * xishu; const rmsFirstA2 = rmsData[rms][iphasicValue * step + 1] * xishu
const rmsFirstB2 = rmsData[rms][iphasicValue * step + 2] * xishu; const rmsFirstB2 = rmsData[rms][iphasicValue * step + 2] * xishu
rmsFA.push([rmsData[rms][0], rmsFirstA2]); rmsFA.push([rmsData[rms][0], rmsFirstA2])
rmsFB.push([rmsData[rms][0], rmsFirstB2]); rmsFB.push([rmsData[rms][0], rmsFirstB2])
rfmax = getMaxTwo(rfmax, rmsFirstA2, rmsFirstB2); rfmax = getMaxTwo(rfmax, rmsFirstA2, rmsFirstB2)
rfmin = getMinOpen(rfmin, rmsFirstA2, rmsFirstB2); rfmin = getMinOpen(rfmin, rmsFirstA2, rmsFirstB2)
if (rfmin < rmsvFirstY) { if (rfmin < rmsvFirstY) {
rmsvFirstY = rfmin; rmsvFirstY = rfmin
if (rfmin === rmsFirstA2) { if (rfmin === rmsFirstA2) {
firstZhou = "a"; firstZhou = 'a'
} else if (rfmin === rmsFirstB2) { } else if (rfmin === rmsFirstB2) {
firstZhou = "b"; firstZhou = 'b'
} }
rmsvFirstX = rmsData[rms][0]; rmsvFirstX = rmsData[rms][0]
} }
const rmsSecondA2 = rmsData[rms][iphasicValue * step + 1]; const rmsSecondA2 = rmsData[rms][iphasicValue * step + 1]
const rmsSecondB2 = rmsData[rms][iphasicValue * step + 2]; const rmsSecondB2 = rmsData[rms][iphasicValue * step + 2]
rmsSA.push([rmsData[rms][0], rmsSecondA2]); rmsSA.push([rmsData[rms][0], rmsSecondA2])
rmsSB.push([rmsData[rms][0], rmsSecondB2]); rmsSB.push([rmsData[rms][0], rmsSecondB2])
rsmax = getMaxTwo(rsmax, rmsSecondA2, rmsSecondB2); rsmax = getMaxTwo(rsmax, rmsSecondA2, rmsSecondB2)
rsmin = getMinOpen(rsmin, rmsSecondA2, rmsSecondB2); rsmin = getMinOpen(rsmin, rmsSecondA2, rmsSecondB2)
if (rsmin < rmsvSecondY) { if (rsmin < rmsvSecondY) {
rmsvSecondY = rsmin; rmsvSecondY = rsmin
if (rsmin === rmsSecondA2) { if (rsmin === rmsSecondA2) {
secondeZhou = "a"; secondeZhou = 'a'
} else if (rsmin === rmsSecondB2) { } else if (rsmin === rmsSecondB2) {
secondeZhou = "b"; secondeZhou = 'b'
} }
rmsvSecondX = rmsData[rms][0]; rmsvSecondX = rmsData[rms][0]
} }
break; break
case 3: case 3:
const rmsFirstA3 = rmsData[rms][iphasicValue * step + 1] * xishu; const rmsFirstA3 = rmsData[rms][iphasicValue * step + 1] * xishu
const rmsFirstB3 = rmsData[rms][iphasicValue * step + 2] * xishu; const rmsFirstB3 = rmsData[rms][iphasicValue * step + 2] * xishu
const rmsFirstC3 = rmsData[rms][iphasicValue * step + 3] * xishu; const rmsFirstC3 = rmsData[rms][iphasicValue * step + 3] * xishu
rmsFA.push([rmsData[rms][0], rmsFirstA3]); rmsFA.push([rmsData[rms][0], rmsFirstA3])
rmsFB.push([rmsData[rms][0], rmsFirstB3]); rmsFB.push([rmsData[rms][0], rmsFirstB3])
rmsFC.push([rmsData[rms][0], rmsFirstC3]); rmsFC.push([rmsData[rms][0], rmsFirstC3])
rfmax = getMax(rfmax, rmsFirstA3, rmsFirstB3, rmsFirstC3); rfmax = getMax(rfmax, rmsFirstA3, rmsFirstB3, rmsFirstC3)
rfmin = isOpen rfmin = isOpen
? getMinOpen(rfmin, rmsFirstA3, rmsFirstC3) ? getMinOpen(rfmin, rmsFirstA3, rmsFirstC3)
: getMin(rfmin, rmsFirstA3, rmsFirstB3, rmsFirstC3); : getMin(rfmin, rmsFirstA3, rmsFirstB3, rmsFirstC3)
if (rfmin < rmsvFirstY) { if (rfmin < rmsvFirstY) {
rmsvFirstY = rfmin; rmsvFirstY = rfmin
if (rfmin === rmsFirstA3) { if (rfmin === rmsFirstA3) {
firstZhou = "a"; firstZhou = 'a'
} else if (rfmin === rmsFirstB3) { } else if (rfmin === rmsFirstB3) {
firstZhou = "b"; firstZhou = 'b'
} else { } else {
firstZhou = "c"; firstZhou = 'c'
} }
rmsvFirstX = rmsData[rms][0]; rmsvFirstX = rmsData[rms][0]
} }
const rmsSecondA3 = rmsData[rms][iphasicValue * step + 1]; const rmsSecondA3 = rmsData[rms][iphasicValue * step + 1]
const rmsSecondB3 = rmsData[rms][iphasicValue * step + 2]; const rmsSecondB3 = rmsData[rms][iphasicValue * step + 2]
const rmsSecondC3 = rmsData[rms][iphasicValue * step + 3]; const rmsSecondC3 = rmsData[rms][iphasicValue * step + 3]
rmsSA.push([rmsData[rms][0], rmsSecondA3]); rmsSA.push([rmsData[rms][0], rmsSecondA3])
rmsSB.push([rmsData[rms][0], rmsSecondB3]); rmsSB.push([rmsData[rms][0], rmsSecondB3])
rmsSC.push([rmsData[rms][0], rmsSecondC3]); rmsSC.push([rmsData[rms][0], rmsSecondC3])
rsmax = getMax(rsmax, rmsSecondA3, rmsSecondB3, rmsSecondC3); rsmax = getMax(rsmax, rmsSecondA3, rmsSecondB3, rmsSecondC3)
rsmin = isOpen rsmin = isOpen
? getMinOpen(rsmin, rmsSecondA3, rmsSecondC3) ? getMinOpen(rsmin, rmsSecondA3, rmsSecondC3)
: getMin(rsmin, rmsSecondA3, rmsSecondB3, rmsSecondC3); : getMin(rsmin, rmsSecondA3, rmsSecondB3, rmsSecondC3)
if (rsmin < rmsvSecondY) { if (rsmin < rmsvSecondY) {
rmsvSecondY = rsmin; rmsvSecondY = rsmin
if (rsmin === rmsSecondA3) { if (rsmin === rmsSecondA3) {
secondeZhou = "a"; secondeZhou = 'a'
} else if (rsmin === rmsSecondB3) { } else if (rsmin === rmsSecondB3) {
secondeZhou = "b"; secondeZhou = 'b'
} else { } else {
secondeZhou = "c"; secondeZhou = 'c'
} }
rmsvSecondX = rmsData[rms][0]; rmsvSecondX = rmsData[rms][0]
} }
break; break
} }
} }
const instantF = { max: ifmax, min: ifmin }; const instantF = { max: ifmax, min: ifmin }
const instantS = { max: ismax, min: ismin }; const instantS = { max: ismax, min: ismin }
const RMSF = { max: rfmax, min: rfmin }; const RMSF = { max: rfmax, min: rfmin }
const RMSS = { max: rsmax, min: rsmin }; const RMSS = { max: rsmax, min: rsmin }
const RMSFMinDetail = { rmsvFirstX, rmsvFirstY, firstZhou }; const RMSFMinDetail = { rmsvFirstX, rmsvFirstY, firstZhou }
const RMSSMinDetail = { rmsvSecondX, rmsvSecondY, secondeZhou }; const RMSSMinDetail = { rmsvSecondX, rmsvSecondY, secondeZhou }
const shunshiF = { shunshiFA, shunshiFB, shunshiFC }; const shunshiF = { shunshiFA, shunshiFB, shunshiFC }
const shunshiS = { shunshiSA, shunshiSB, shunshiSC }; const shunshiS = { shunshiSA, shunshiSB, shunshiSC }
const RMSFWave = { rmsFA, rmsFB, rmsFC }; const RMSFWave = { rmsFA, rmsFB, rmsFC }
const RMSSWave = { rmsSA, rmsSB, rmsSC }; const RMSSWave = { rmsSA, rmsSB, rmsSC }
const title = { aTitle, bTitle, cTitle, unit }; const title = { aTitle, bTitle, cTitle, unit }
return { return {
instantF, instantF,
instantS, instantS,
RMSF, RMSF,
@@ -234,63 +230,74 @@ const fliteWaveData = (wp, step, iphasicValue, isOpen) => {
RMSFWave, RMSFWave,
RMSSWave, RMSSWave,
title, title,
unit, unit
}; }
}; }
// 监听消息 // 监听消息
self.onmessage = function (e) { self.onmessage = function (e) {
const { wp, isOpen, value, boxoList } = JSON.parse(e.data); const { wp, isOpen, value, boxoList } = JSON.parse(e.data)
try { try {
const iphasicValue = wp.iphasic || 1; const iphasicValue = wp.iphasic || 1
const picCounts = (wp.waveTitle.length - 1) / iphasicValue; const picCounts = (wp.waveTitle.length - 1) / iphasicValue
const waveDatas = []; const waveDatas = []
for (let i = 0; i < picCounts; i++) { for (let i = 0; i < picCounts; i++) {
const data = fliteWaveData(wp, i, iphasicValue, isOpen,boxoList); const data = fliteWaveData(wp, i, iphasicValue, isOpen, boxoList)
waveDatas.push(data); waveDatas.push(data)
} }
// 处理标题 // 处理标题
let titles = ""; let titles = ''
if (boxoList.systemType == "pms") { if (boxoList.systemType == 'pms') {
titles = titles =
"变电站名称:" + '变电站名称:' +
boxoList.powerStationName + boxoList.powerStationName +
" 监测点名称:" + ' 监测点名称:' +
boxoList.measurementPointName + boxoList.measurementPointName +
" 发生时刻:" + ' 发生时刻:' +
boxoList.startTime + boxoList.startTime +
" 残余电压:" + ' 残余电压:' +
(boxoList.featureAmplitude * 100).toFixed(2) + (boxoList.featureAmplitude * 100).toFixed(2) +
"% 持续时间:" + '% 持续时间:' +
boxoList.duration + boxoList.duration +
"s"; 's'
} else if (boxoList.systemType == "ZL") { } else if (boxoList.systemType == 'ZL') {
titles = titles =
" 监测点名称:" + ' 监测点名称:' +
boxoList.equipmentName + boxoList.equipmentName +
" 发生时刻:" + ' 发生时刻:' +
boxoList.startTime + boxoList.startTime +
" 残余电压:" + ' 残余电压:' +
boxoList.evtParamVVaDepth + boxoList.evtParamVVaDepth +
" 持续时间:" + ' 持续时间:' +
boxoList.evtParamTm + boxoList.evtParamTm +
"s"; 's'
} else if (boxoList.systemType == 'YPT') {
titles =
' 监测点名称:' +
boxoList.lineName +
' 发生时刻:' +
boxoList.startTime +
' 残余电压:' +
(boxoList.featureAmplitude * 100).toFixed(2) +
'% 持续时间:' +
boxoList.persistTime +
's'
} else { } else {
titles = titles =
"变电站名称:" + '变电站名称:' +
boxoList.subName + boxoList.subName +
" 监测点名称:" + ' 监测点名称:' +
boxoList.lineName + boxoList.lineName +
" 发生时刻:" + ' 发生时刻:' +
boxoList.startTime + boxoList.startTime +
" 残余电压:" + ' 残余电压:' +
(boxoList.featureAmplitude * 100).toFixed(2) + (boxoList.featureAmplitude * 100).toFixed(2) +
"% 持续时间:" + '% 持续时间:' +
boxoList.duration + boxoList.duration +
"s"; 's'
} }
// 发送处理结果回主线程 // 发送处理结果回主线程
self.postMessage({ self.postMessage({
@@ -300,12 +307,12 @@ self.onmessage = function (e) {
time: wp.time, time: wp.time,
type: wp.waveType, type: wp.waveType,
severity: wp.yzd, severity: wp.yzd,
iphasic: iphasicValue, iphasic: iphasicValue
}); })
} catch (error) { } catch (error) {
self.postMessage({ self.postMessage({
success: false, success: false,
error: error.message, error: error.message
}); })
}
} }
};

View File

@@ -1,9 +1,6 @@
<template> <template>
<div v-loading="loading" style="position: relative; height: 100%">
<div v-loading="loading" :element-loading-background="'rgba(122, 122, 122, 0.8)'" <div id="boxr">
style="position: relative;height: 100%;">
<div id="boxr" style="background: #343849c7">
<div id="rmsp" :style="`height:${vh};overflow: hidden;`"> <div id="rmsp" :style="`height:${vh};overflow: hidden;`">
<div class="bx" id="rms"></div> <div class="bx" id="rms"></div>
</div> </div>
@@ -16,6 +13,7 @@ import { ref, computed, onMounted, onBeforeUnmount, watch, nextTick } from 'vue'
import html2canvas from 'html2canvas' import html2canvas from 'html2canvas'
import $ from 'jquery' import $ from 'jquery'
import * as echarts from 'echarts' import * as echarts from 'echarts'
import { mainHeight } from '@/utils/layout'
import url from '@/assets/img/point.png' import url from '@/assets/img/point.png'
import url2 from '@/assets/img/dw.png' import url2 from '@/assets/img/dw.png'
const worker = ref<Worker | null>(null) const worker = ref<Worker | null>(null)
@@ -66,7 +64,7 @@ interface WaveData {
interface Props { interface Props {
value?: number value?: number
flag?: string | number | boolean flag?: string | number | boolean
parentHeight?: string | number | boolean parentHeight?: any
DColor?: boolean DColor?: boolean
boxoList?: any boxoList?: any
wp?: any wp?: any
@@ -78,7 +76,7 @@ const props = withDefaults(defineProps<Props>(), {
parentHeight: 0, parentHeight: 0,
DColor: false, DColor: false,
boxoList: () => ({}), boxoList: () => ({}),
wp: () => ({}), wp: () => ({})
}) })
const loading = ref(true) const loading = ref(true)
@@ -110,34 +108,41 @@ const myChartess4 = ref<echarts.ECharts | null>(null)
const myChartess5 = ref<echarts.ECharts | null>(null) const myChartess5 = ref<echarts.ECharts | null>(null)
const vh = computed(() => { const vh = computed(() => {
if (props.flag == 1) { if (props.parentHeight == 999) {
return '690px'
} else if (props.parentHeight != 0) {
return '310px' return '310px'
} else if (props.parentHeight != 0) {
return mainHeight(props.parentHeight, 2).height
}
if (props.flag == 1) {
return mainHeight(200).height
} else { } else {
return '350px' return mainHeight(200, 2).height
} }
}) })
const vw = computed(() => '100%') const vw = computed(() => '100%')
watch(() => props.value, (newVal) => { watch(
() => props.value,
newVal => {
if (newVal == 2) { if (newVal == 2) {
initWaves() initWaves()
} else { } else {
$('#wave1').remove() $('#wave1').remove()
initWaves() initWaves()
} }
}) }
)
onMounted(() => { onMounted(() => {
const zoomValue = document.body.style.getPropertyValue('zoom'); const zoomValue = document.body.style.getPropertyValue('zoom')
zoom.value = 1 / (zoomValue ? parseFloat(zoomValue) : 1); zoom.value = 1 / (zoomValue ? parseFloat(zoomValue) : 1)
window.addEventListener('resize', handleResize) window.addEventListener('resize', handleResize)
// 初始化 Web Worker // 初始化 Web Worker
worker.value = new Worker(new URL('./rmsWorker.js', import.meta.url)); worker.value = new Worker(new URL('./rmsWorker.js', import.meta.url))
worker.value.onmessage = (e) => { worker.value.onmessage = e => {
if (e.data.success) { if (e.data.success) {
const data = e.data const data = e.data
titles.value = data.titles titles.value = data.titles
@@ -171,15 +176,15 @@ onBeforeUnmount(() => {
}) })
const handleResize = () => { const handleResize = () => {
const zoomValue = document.body.style.getPropertyValue('zoom'); const zoomValue = document.body.style.getPropertyValue('zoom')
zoom.value = 1 / (zoomValue ? parseFloat(zoomValue) : 1); zoom.value = 1 / (zoomValue ? parseFloat(zoomValue) : 1)
} }
const download = () => { const download = () => {
const boxr = document.getElementById('boxr') const boxr = document.getElementById('boxr')
if (boxr) { if (boxr) {
html2canvas(boxr, { html2canvas(boxr, {
scale: 2, scale: 2
}).then(function (canvas) { }).then(function (canvas) {
const creatIMg = document.createElement('a') const creatIMg = document.createElement('a')
creatIMg.download = 'rms波形.png' creatIMg.download = 'rms波形.png'
@@ -195,13 +200,14 @@ const query = () => {
if (props.wp) { if (props.wp) {
// 使用 Worker 处理数据 // 使用 Worker 处理数据
if (worker.value) { if (worker.value) {
worker.value.postMessage(
worker.value.postMessage(JSON.stringify({ JSON.stringify({
wp: props.wp, wp: props.wp,
isOpen: isOpen.value, isOpen: isOpen.value,
value: props.value, value: props.value,
boxoList: props.boxoList boxoList: props.boxoList
})) })
)
} }
} else { } else {
initWave(null, null, null, null, null) initWave(null, null, null, null, null)
@@ -240,7 +246,6 @@ const waveData = (
const initWaves = () => { const initWaves = () => {
if (props.wp) { if (props.wp) {
iphasic.value = props.wp.iphasic || 1 iphasic.value = props.wp.iphasic || 1
const picCounts = (props.wp.waveTitle.length - 1) / iphasic.value const picCounts = (props.wp.waveTitle.length - 1) / iphasic.value
waveDatas.value = [] waveDatas.value = []
@@ -266,15 +271,29 @@ const initWaves = () => {
} }
const fliteWaveData = (wp: any, step: number): WaveData => { const fliteWaveData = (wp: any, step: number): WaveData => {
const rmsData = wp.listRmsData const rmsData = wp.listRmsData
const pt = Number(wp.pt) / 1000 const pt = Number(wp.pt) / 1000
const ct = Number(wp.ct) const ct = Number(wp.ct)
const titleList = wp.waveTitle const titleList = wp.waveTitle
let xishu = pt let xishu = pt
let aTitle = '', bTitle = '', cTitle = '', unit = '电压' let aTitle = '',
let rmsvFirstX = 0, rmsvFirstY = 0, rmsvSecondX = 0, rmsvSecondY = 0, firstZhou = 'a', secondeZhou = 'a' bTitle = '',
let ifmax = 0, ifmin = 0, ismax = 0, ismin = 0, rfmax = 0, rfmin = 0, rsmax = 0, rsmin = 0 cTitle = '',
unit = '电压'
let rmsvFirstX = 0,
rmsvFirstY = 0,
rmsvSecondX = 0,
rmsvSecondY = 0,
firstZhou = 'a',
secondeZhou = 'a'
let ifmax = 0,
ifmin = 0,
ismax = 0,
ismin = 0,
rfmax = 0,
rfmin = 0,
rsmax = 0,
rsmin = 0
const shunshiFA: number[][] = [] const shunshiFA: number[][] = []
const shunshiFB: number[][] = [] const shunshiFB: number[][] = []
@@ -289,7 +308,6 @@ const fliteWaveData = (wp: any, step: number): WaveData => {
const rmsSB: number[][] = [] const rmsSB: number[][] = []
const rmsSC: number[][] = [] const rmsSC: number[][] = []
if (titleList[iphasic.value * step + 1]?.substring(0, 1) !== 'U') { if (titleList[iphasic.value * step + 1]?.substring(0, 1) !== 'U') {
xishu = ct xishu = ct
unit = '电流' unit = '电流'
@@ -309,8 +327,6 @@ const fliteWaveData = (wp: any, step: number): WaveData => {
} }
} }
if (rmsData[0][iphasic.value * step + 1] !== undefined) { if (rmsData[0][iphasic.value * step + 1] !== undefined) {
rfmax = rmsData[0][iphasic.value * step + 1] * xishu rfmax = rmsData[0][iphasic.value * step + 1] * xishu
rfmin = rmsData[0][iphasic.value * step + 1] * xishu rfmin = rmsData[0][iphasic.value * step + 1] * xishu
@@ -322,8 +338,6 @@ const fliteWaveData = (wp: any, step: number): WaveData => {
rmsvSecondX = rmsData[0][0] rmsvSecondX = rmsData[0][0]
} }
for (let rms = 0; rms < rmsData.length; rms++) { for (let rms = 0; rms < rmsData.length; rms++) {
if (rmsData[rms][iphasic.value * step + 1] === undefined) { if (rmsData[rms][iphasic.value * step + 1] === undefined) {
break break
@@ -388,12 +402,14 @@ const fliteWaveData = (wp: any, step: number): WaveData => {
const rmsFirstA3 = rmsData[rms][iphasic.value * step + 1] * xishu const rmsFirstA3 = rmsData[rms][iphasic.value * step + 1] * xishu
const rmsFirstB3 = rmsData[rms][iphasic.value * step + 2] * xishu const rmsFirstB3 = rmsData[rms][iphasic.value * step + 2] * xishu
const rmsFirstC3 = rmsData[rms][iphasic.value * step + 3] * xishu const rmsFirstC3 = rmsData[rms][iphasic.value * step + 3] * xishu
rmsFA.push([rmsData[rms][0], rmsFirstA3]); rmsFA.push([rmsData[rms][0], rmsFirstA3])
rmsFB.push([rmsData[rms][0], rmsFirstB3]); rmsFB.push([rmsData[rms][0], rmsFirstB3])
rmsFC.push([rmsData[rms][0], rmsFirstC3]); rmsFC.push([rmsData[rms][0], rmsFirstC3])
rfmax = getMax(rfmax, rmsFirstA3, rmsFirstB3, rmsFirstC3) rfmax = getMax(rfmax, rmsFirstA3, rmsFirstB3, rmsFirstC3)
rfmin = isOpen.value ? getMinOpen(rfmin, rmsFirstA3, rmsFirstC3) : getMin(rfmin, rmsFirstA3, rmsFirstB3, rmsFirstC3) rfmin = isOpen.value
? getMinOpen(rfmin, rmsFirstA3, rmsFirstC3)
: getMin(rfmin, rmsFirstA3, rmsFirstB3, rmsFirstC3)
if (rfmin < rmsvFirstY) { if (rfmin < rmsvFirstY) {
rmsvFirstY = rfmin rmsvFirstY = rfmin
if (rfmin === rmsFirstA3) { if (rfmin === rmsFirstA3) {
@@ -413,7 +429,9 @@ const fliteWaveData = (wp: any, step: number): WaveData => {
rmsSB.push([rmsData[rms][0], rmsSecondB3]) rmsSB.push([rmsData[rms][0], rmsSecondB3])
rmsSC.push([rmsData[rms][0], rmsSecondC3]) rmsSC.push([rmsData[rms][0], rmsSecondC3])
rsmax = getMax(rsmax, rmsSecondA3, rmsSecondB3, rmsSecondC3) rsmax = getMax(rsmax, rmsSecondA3, rmsSecondB3, rmsSecondC3)
rsmin = isOpen.value ? getMinOpen(rsmin, rmsSecondA3, rmsSecondC3) : getMin(rsmin, rmsSecondA3, rmsSecondB3, rmsSecondC3) rsmin = isOpen.value
? getMinOpen(rsmin, rmsSecondA3, rmsSecondC3)
: getMin(rsmin, rmsSecondA3, rmsSecondB3, rmsSecondC3)
if (rsmin < rmsvSecondY) { if (rsmin < rmsvSecondY) {
rmsvSecondY = rsmin rmsvSecondY = rsmin
if (rsmin === rmsSecondA3) { if (rsmin === rmsSecondA3) {
@@ -429,7 +447,6 @@ const fliteWaveData = (wp: any, step: number): WaveData => {
} }
} }
const instantF = { max: ifmax, min: ifmin } const instantF = { max: ifmax, min: ifmin }
const instantS = { max: ismax, min: ismin } const instantS = { max: ismax, min: ismin }
const RMSF = { max: rfmax, min: rfmin } const RMSF = { max: rfmax, min: rfmin }
@@ -442,11 +459,29 @@ const fliteWaveData = (wp: any, step: number): WaveData => {
const RMSSWave = { rmsSA, rmsSB, rmsSC } const RMSSWave = { rmsSA, rmsSB, rmsSC }
const title = { aTitle, bTitle, cTitle, unit } const title = { aTitle, bTitle, cTitle, unit }
return waveData(instantF, instantS, RMSF, RMSS, RMSFMinDetail, RMSSMinDetail, shunshiF, shunshiS, RMSFWave, RMSSWave, title, unit) return waveData(
instantF,
instantS,
RMSF,
RMSS,
RMSFMinDetail,
RMSSMinDetail,
shunshiF,
shunshiS,
RMSFWave,
RMSSWave,
title,
unit
)
} }
const initWave = (waveDatas: WaveData[] | null, time: string | null, type: string | null, severity: string | null, isOpen: boolean | null) => { const initWave = (
waveDatas: WaveData[] | null,
time: string | null,
type: string | null,
severity: string | null,
isOpen: boolean | null
) => {
$('div.bx').remove() $('div.bx').remove()
let picHeight = vh.value let picHeight = vh.value
@@ -456,9 +491,15 @@ const initWave = (waveDatas: WaveData[] | null, time: string | null, type: strin
let rmscm: number[][] = [] let rmscm: number[][] = []
let titleText = '' let titleText = ''
let unit = '' let unit = ''
let a: string | null = null, b: string | null = null, c: string | null = null let a: string | null = null,
let radata: number[][] = [], rbdata: number[][] = [], rcdata: number[][] = [] b: string | null = null,
let rmsvX: any = 0, rmsvY: any = 0, zhou = '' c: string | null = null
let radata: number[][] = [],
rbdata: number[][] = [],
rcdata: number[][] = []
let rmsvX: any = 0,
rmsvY: any = 0,
zhou = ''
if (!waveDatas) { if (!waveDatas) {
titleText = '该事件暂无波形图' titleText = '该事件暂无波形图'
@@ -543,10 +584,7 @@ const initWave = (waveDatas: WaveData[] | null, time: string | null, type: strin
] ]
unit = 'kV' unit = 'kV'
} else { } else {
fz.value = [ fz.value = [props.wp.listRmsMinData[0][0], props.wp.listRmsMinData[0][1]]
props.wp.listRmsMinData[0][0],
props.wp.listRmsMinData[0][1]
]
unit = 'V' unit = 'V'
} }
} else { } else {
@@ -555,18 +593,40 @@ const initWave = (waveDatas: WaveData[] | null, time: string | null, type: strin
for (let step = waveDatas.length - 1; step > 0 && step < waveDatas.length; step--) { for (let step = waveDatas.length - 1; step > 0 && step < waveDatas.length; step--) {
const rmsId = 'rms' + step const rmsId = 'rms' + step
const newDivRms = $(`<div style="height:${vh.value};overflow: hidden;"><div class='bx' id='${rmsId}'></div></div>`) const newDivRms = $(
`<div style="height:${vh.value};overflow: hidden;"><div class='bx' id='${rmsId}'></div></div>`
)
newDivRms.insertAfter($('#rmsp')) newDivRms.insertAfter($('#rmsp'))
$(`#${rmsId}`).css('height', picHeight).css('width', vw.value) $(`#${rmsId}`).css('height', picHeight).css('width', vw.value)
} }
} else { } else {
titleText = `变电站名称:${subName.value} 监测点名称:${lineName.value} 发生时刻:${time} 残余电压:${(Number(eventValue.value) * 1).toFixed(0)}% 持续时间:${persistTime.value}s` titleText = `变电站名称:${subName.value} 监测点名称:${lineName.value} 发生时刻:${time} 残余电压:${(
Number(eventValue.value) * 1
).toFixed(0)}% 持续时间:${persistTime.value}s`
} }
const rms = document.getElementById('rmsp') const rms = document.getElementById('rmsp')
if (!rms) return if (!rms) return
const myChartes = echarts.init(rms) const myChartes = echarts.init(rms)
const echartsColor = { WordColor: "#fff", thread: "#fff", FigureColor: ["#07CCCA ", "#00BFF5", "#FFBF00", "#77DA63", "#D5FF6B", "#Ff6600", "#FF9100", "#5B6E96", "#66FFCC", "#B3B3B3", "#FF00FF", "#CC00FF", "#FF9999"] } const echartsColor = {
WordColor: '#000',
thread: '#000',
FigureColor: [
'#07CCCA ',
'#00BFF5',
'#FFBF00',
'#77DA63',
'#D5FF6B',
'#Ff6600',
'#FF9100',
'#5B6E96',
'#66FFCC',
'#B3B3B3',
'#FF00FF',
'#CC00FF',
'#FF9999'
]
}
setTimeout(() => { setTimeout(() => {
rms.style.width = '100%' rms.style.width = '100%'
@@ -582,7 +642,12 @@ const initWave = (waveDatas: WaveData[] | null, time: string | null, type: strin
let tips = '时刻:' + params[0].data[0] + '</br/>' let tips = '时刻:' + params[0].data[0] + '</br/>'
for (let i = 0; i < params.length; i++) { for (let i = 0; i < params.length; i++) {
if (params[i].seriesName != '暂降触发点') { if (params[i].seriesName != '暂降触发点') {
tips += params[i].marker + params[i].seriesName + ':' + (params[i].value[1] - 0).toFixed(2) + '<br/>' tips +=
params[i].marker +
params[i].seriesName +
':' +
(params[i].value[1] - 0).toFixed(2) +
'<br/>'
} }
} }
return tips return tips
@@ -604,8 +669,8 @@ const initWave = (waveDatas: WaveData[] | null, time: string | null, type: strin
align: 'left' align: 'left'
}, },
textStyle: { textStyle: {
fontSize: '0.8rem', fontSize: '16px',
color: props.DColor ? '#fff' : echartsColor.WordColor color: props.DColor ? '#000' : echartsColor.WordColor
} }
}, },
legend: { legend: {
@@ -615,8 +680,8 @@ const initWave = (waveDatas: WaveData[] | null, time: string | null, type: strin
enabled: true, enabled: true,
itemDistance: 5, itemDistance: 5,
textStyle: { textStyle: {
fontSize: '0.7rem', fontSize: '12px',
color: props.DColor ? '#fff' : echartsColor.WordColor, color: props.DColor ? '#000' : echartsColor.WordColor,
rich: { a: { verticalAlign: 'middle' } }, rich: { a: { verticalAlign: 'middle' } },
padding: [0, 0, 0, 0] padding: [0, 0, 0, 0]
} }
@@ -641,13 +706,13 @@ const initWave = (waveDatas: WaveData[] | null, time: string | null, type: strin
title: { title: {
text: 'ms', text: 'ms',
textStyle: { textStyle: {
fontSize: '0.6rem', fontSize: '12px',
color: props.DColor ? '#fff' : echartsColor.WordColor color: props.DColor ? '#000' : echartsColor.WordColor
}, },
enabled: true, enabled: true,
align: 'high' align: 'high'
}, },
nameTextStyle: { fontSize: '0.6rem' }, nameTextStyle: { fontSize: '12px' },
labels: { labels: {
formatter: function () { formatter: function () {
return this.value return this.value
@@ -657,13 +722,13 @@ const initWave = (waveDatas: WaveData[] | null, time: string | null, type: strin
axisTick: { alignWithLabel: true }, axisTick: { alignWithLabel: true },
axisLine: { axisLine: {
lineStyle: { lineStyle: {
color: props.DColor ? '#fff' : echartsColor.thread color: props.DColor ? '#000' : echartsColor.thread
}, },
onZero: false onZero: false
}, },
axisLabel: { axisLabel: {
fontSize: '0.6rem', fontSize: '12px',
color: props.DColor ? '#fff' : echartsColor.WordColor, color: props.DColor ? '#000' : echartsColor.WordColor,
formatter: function (value: number) { formatter: function (value: number) {
if (valA.value != (value - 0).toFixed(0)) { if (valA.value != (value - 0).toFixed(0)) {
valA.value = Number((value - 0).toFixed(0)) valA.value = Number((value - 0).toFixed(0))
@@ -684,31 +749,31 @@ const initWave = (waveDatas: WaveData[] | null, time: string | null, type: strin
y: -10 y: -10
}, },
max: rmscm[0]?.[1] * 1.06 || 0, max: rmscm[0]?.[1] * 1.06 || 0,
min: rmscu[0]?.[1] - (rmscu[0]?.[1] * 0.04) || 0, min: rmscu[0]?.[1] - rmscu[0]?.[1] * 0.04 || 0,
boundaryGap: [0, '100%'], boundaryGap: [0, '100%'],
showLastLabel: true, showLastLabel: true,
opposite: false, opposite: false,
nameTextStyle: { nameTextStyle: {
fontSize: '0.6rem', fontSize: '12px',
color: props.DColor ? '#fff' : echartsColor.WordColor color: props.DColor ? '#000' : echartsColor.WordColor
}, },
axisLine: { axisLine: {
show: true, show: true,
lineStyle: { lineStyle: {
color: props.DColor ? '#fff' : echartsColor.thread color: props.DColor ? '#000' : echartsColor.thread
}, },
onZero: false onZero: false
}, },
axisLabel: { axisLabel: {
fontSize: '0.6rem', fontSize: '12px',
color: props.DColor ? '#fff' : echartsColor.WordColor, color: props.DColor ? '#000' : echartsColor.WordColor,
formatter: function (value: number) { formatter: function (value: number) {
return (value - 0).toFixed(2) return (value - 0).toFixed(2)
} }
}, },
splitLine: { splitLine: {
lineStyle: { lineStyle: {
color: [props.DColor ? '#fff' : echartsColor.thread], color: [props.DColor ? '#000' : echartsColor.thread],
type: 'dashed', type: 'dashed',
opacity: 0.5 opacity: 0.5
} }
@@ -718,7 +783,7 @@ const initWave = (waveDatas: WaveData[] | null, time: string | null, type: strin
left: '1%', left: '1%',
right: '45px', right: '45px',
bottom: '40px', bottom: '40px',
top: '70px', top: '60px',
containLabel: true containLabel: true
}, },
dataZoom: [ dataZoom: [
@@ -780,7 +845,7 @@ const initWave = (waveDatas: WaveData[] | null, time: string | null, type: strin
show: true, show: true,
position: [5, -20], position: [5, -20],
color: '#000', color: '#000',
fontSize: '14px', fontSize: '12px',
fontWeight: 'bold', fontWeight: 'bold',
borderType: 'solid', borderType: 'solid',
borderWidth: 0.5, borderWidth: 0.5,
@@ -792,7 +857,6 @@ const initWave = (waveDatas: WaveData[] | null, time: string | null, type: strin
] ]
} }
myChartes.setOption(option) myChartes.setOption(option)
myChartess.value = myChartes myChartess.value = myChartes
@@ -809,12 +873,25 @@ const initWave = (waveDatas: WaveData[] | null, time: string | null, type: strin
} }
} }
const drawPics = (waveDataTemp: WaveData, picHeight: string, step: number, show: boolean, myChartes1: echarts.ECharts, rmscm: number[][], rmscu: number[][], title: string) => { const drawPics = (
waveDataTemp: WaveData,
picHeight: string,
step: number,
show: boolean,
myChartes1: echarts.ECharts,
rmscm: number[][],
rmscu: number[][],
title: string
) => {
step = step + 1 step = step + 1
const rmsId = 'rms' + step const rmsId = 'rms' + step
let a = '', b = '', c = '' let a = '',
b = '',
c = ''
let unit = '' let unit = ''
let radata: number[][] = [], rbdata: number[][] = [], rcdata: number[][] = [] let radata: number[][] = [],
rbdata: number[][] = [],
rcdata: number[][] = []
switch (iphasic.value) { switch (iphasic.value) {
case 1: case 1:
@@ -877,7 +954,25 @@ const drawPics = (waveDataTemp: WaveData, picHeight: string, step: number, show:
if (!rmsIds) return if (!rmsIds) return
const myChartes = echarts.init(rmsIds) const myChartes = echarts.init(rmsIds)
const echartsColor = { WordColor: "#fff", thread: "#fff", FigureColor: ["#07CCCA ", "#00BFF5", "#FFBF00", "#77DA63", "#D5FF6B", "#Ff6600", "#FF9100", "#5B6E96", "#66FFCC", "#B3B3B3", "#FF00FF", "#CC00FF", "#FF9999"] } const echartsColor = {
WordColor: '#000',
thread: '#000',
FigureColor: [
'#07CCCA ',
'#00BFF5',
'#FFBF00',
'#77DA63',
'#D5FF6B',
'#Ff6600',
'#FF9100',
'#5B6E96',
'#66FFCC',
'#B3B3B3',
'#FF00FF',
'#CC00FF',
'#FF9999'
]
}
const option = { const option = {
tooltip: { tooltip: {
@@ -888,7 +983,12 @@ const drawPics = (waveDataTemp: WaveData, picHeight: string, step: number, show:
let tips = '时刻:' + params[0].data[0] + '</br/>' let tips = '时刻:' + params[0].data[0] + '</br/>'
for (let i = 0; i < params.length; i++) { for (let i = 0; i < params.length; i++) {
if (params[i].seriesName != '暂降触发点') { if (params[i].seriesName != '暂降触发点') {
tips += params[i].marker + params[i].seriesName + ':' + (params[i].value[1] - 0).toFixed(2) + '<br/>' tips +=
params[i].marker +
params[i].seriesName +
':' +
(params[i].value[1] - 0).toFixed(2) +
'<br/>'
} }
} }
return tips return tips
@@ -906,8 +1006,8 @@ const drawPics = (waveDataTemp: WaveData, picHeight: string, step: number, show:
left: 'center', left: 'center',
text: '', //titlename || title, text: '', //titlename || title,
textStyle: { textStyle: {
fontSize: '0.8rem', fontSize: '16px',
color: props.DColor ? '#fff' : echartsColor.WordColor color: props.DColor ? '#000' : echartsColor.WordColor
} }
}, },
legend: { legend: {
@@ -917,8 +1017,8 @@ const drawPics = (waveDataTemp: WaveData, picHeight: string, step: number, show:
enabled: true, enabled: true,
itemDistance: 5, itemDistance: 5,
textStyle: { textStyle: {
fontSize: '0.7rem', fontSize: '12px',
color: props.DColor ? '#fff' : echartsColor.WordColor, color: props.DColor ? '#000' : echartsColor.WordColor,
rich: { a: { verticalAlign: 'middle' } }, rich: { a: { verticalAlign: 'middle' } },
padding: [0, 0, 0, 0] padding: [0, 0, 0, 0]
} }
@@ -932,8 +1032,8 @@ const drawPics = (waveDataTemp: WaveData, picHeight: string, step: number, show:
title: { title: {
text: 'ms', text: 'ms',
textStyle: { textStyle: {
fontSize: '0.6rem', fontSize: '12px',
color: props.DColor ? '#fff' : echartsColor.WordColor color: props.DColor ? '#000' : echartsColor.WordColor
}, },
enabled: true, enabled: true,
align: 'high' align: 'high'
@@ -943,18 +1043,18 @@ const drawPics = (waveDataTemp: WaveData, picHeight: string, step: number, show:
return this.value return this.value
} }
}, },
nameTextStyle: { fontSize: '0.6rem' }, nameTextStyle: { fontSize: '12px' },
splitLine: { show: false }, splitLine: { show: false },
axisTick: { alignWithLabel: true }, axisTick: { alignWithLabel: true },
axisLine: { axisLine: {
lineStyle: { lineStyle: {
color: props.DColor ? '#fff' : echartsColor.thread color: props.DColor ? '#000' : echartsColor.thread
}, },
onZero: false onZero: false
}, },
axisLabel: { axisLabel: {
fontSize: '0.6rem', fontSize: '12px',
color: props.DColor ? '#fff' : echartsColor.WordColor, color: props.DColor ? '#000' : echartsColor.WordColor,
formatter: function (value: number) { formatter: function (value: number) {
if (valB.value != (value - 0).toFixed(0)) { if (valB.value != (value - 0).toFixed(0)) {
valB.value = Number((value - 0).toFixed(0)) valB.value = Number((value - 0).toFixed(0))
@@ -978,26 +1078,26 @@ const drawPics = (waveDataTemp: WaveData, picHeight: string, step: number, show:
showLastLabel: true, showLastLabel: true,
opposite: false, opposite: false,
nameTextStyle: { nameTextStyle: {
fontSize: '0.6rem', fontSize: '12px',
color: props.DColor ? '#fff' : echartsColor.WordColor color: props.DColor ? '#000' : echartsColor.WordColor
}, },
axisLine: { axisLine: {
show: true, show: true,
lineStyle: { lineStyle: {
color: props.DColor ? '#fff' : echartsColor.thread color: props.DColor ? '#000' : echartsColor.thread
}, },
onZero: false onZero: false
}, },
axisLabel: { axisLabel: {
fontSize: '0.6rem', fontSize: '12px',
color: props.DColor ? '#fff' : echartsColor.WordColor, color: props.DColor ? '#000' : echartsColor.WordColor,
formatter: function (value: number) { formatter: function (value: number) {
return (value - 0).toFixed(2) return (value - 0).toFixed(2)
} }
}, },
splitLine: { splitLine: {
lineStyle: { lineStyle: {
color: [props.DColor ? '#fff' : echartsColor.thread], color: [props.DColor ? '#000' : echartsColor.thread],
type: 'dashed', type: 'dashed',
opacity: 0.5 opacity: 0.5
} }
@@ -1007,7 +1107,7 @@ const drawPics = (waveDataTemp: WaveData, picHeight: string, step: number, show:
left: '1%', left: '1%',
right: '45px', right: '45px',
bottom: '40px', bottom: '40px',
top: '70px', top: '60px',
containLabel: true containLabel: true
}, },
dataZoom: [ dataZoom: [
@@ -1059,11 +1159,21 @@ const drawPics = (waveDataTemp: WaveData, picHeight: string, step: number, show:
myChartes.setOption(option) myChartes.setOption(option)
switch (step) { switch (step) {
case 1: myChartess1.value = myChartes; break case 1:
case 2: myChartess2.value = myChartes; break myChartess1.value = myChartes
case 3: myChartess3.value = myChartes; break break
case 4: myChartess4.value = myChartes; break case 2:
case 5: myChartess5.value = myChartes; break myChartess2.value = myChartes
break
case 3:
myChartess3.value = myChartes
break
case 4:
myChartess4.value = myChartes
break
case 5:
myChartess5.value = myChartes
break
} }
setTimeout(() => { setTimeout(() => {
@@ -1076,7 +1186,14 @@ const drawPics = (waveDataTemp: WaveData, picHeight: string, step: number, show:
const backbxlb = () => { const backbxlb = () => {
waveDatas.value = [] waveDatas.value = []
const charts = [myChartess.value, myChartess1.value, myChartess2.value, myChartess3.value, myChartess4.value, myChartess5.value] const charts = [
myChartess.value,
myChartess1.value,
myChartess2.value,
myChartess3.value,
myChartess4.value,
myChartess5.value
]
charts.forEach(chart => { charts.forEach(chart => {
if (chart) { if (chart) {
@@ -1092,13 +1209,11 @@ const backbxlb = () => {
myChartess5.value = null myChartess5.value = null
// echarts.disconnect(charts.filter(Boolean) as echarts.ECharts[]) // echarts.disconnect(charts.filter(Boolean) as echarts.ECharts[])
charts charts.filter(Boolean).forEach(chart => {
.filter(Boolean)
.forEach(chart => {
if (chart && typeof chart.dispose === 'function') { if (chart && typeof chart.dispose === 'function') {
chart.dispose(); chart.dispose()
} }
}); })
} }
const getMax = (temp: number, tempA: number, tempB: number, tempC: number): number => { const getMax = (temp: number, tempA: number, tempB: number, tempC: number): number => {

View File

@@ -1,120 +1,131 @@
// waveData.worker.js // waveData.worker.js
self.addEventListener('message', function (e) { self.addEventListener('message', function (e) {
const { wp, value, iphasic, isOpen, boxoList } = JSON.parse(e.data); const { wp, value, iphasic, isOpen, boxoList } = JSON.parse(e.data)
// 处理波形数据的函数 // 处理波形数据的函数
const fliteWaveData = (wp, step) => { const fliteWaveData = (wp, step) => {
// 将原有的fliteWaveData函数实现复制到这里 // 将原有的fliteWaveData函数实现复制到这里
const shunData = wp.listWaveData; const shunData = wp.listWaveData
const pt = Number(wp.pt) / 1000; const pt = Number(wp.pt) / 1000
const ct = Number(wp.ct); const ct = Number(wp.ct)
const titleList = wp.waveTitle; const titleList = wp.waveTitle
let xishu = pt; let xishu = pt
let aTitle = '', bTitle = '', cTitle = '', unit = '电压'; let aTitle = '',
let ifmax = 0, ifmin = 0, ismax = 0, ismin = 0; bTitle = '',
cTitle = '',
unit = '电压'
let ifmax = 0,
ifmin = 0,
ismax = 0,
ismin = 0
const shunshiFA = []; const shunshiFA = []
const shunshiFB = []; const shunshiFB = []
const shunshiFC = []; const shunshiFC = []
const shunshiSA = []; const shunshiSA = []
const shunshiSB = []; const shunshiSB = []
const shunshiSC = []; const shunshiSC = []
if (shunData.length > 0) { if (shunData.length > 0) {
if (titleList[iphasic * step + 1]?.substring(0, 1) !== 'U') { if (titleList[iphasic * step + 1]?.substring(0, 1) !== 'U') {
xishu = ct; xishu = ct
unit = '电流'; unit = '电流'
} }
for (let i = 1; i <= iphasic; i++) { for (let i = 1; i <= iphasic; i++) {
switch (i) { switch (i) {
case 1: case 1:
aTitle = titleList[iphasic * step + i]?.substring(1) || ''; aTitle = titleList[iphasic * step + i]?.substring(1) || ''
break; break
case 2: case 2:
bTitle = titleList[iphasic * step + i]?.substring(1) || ''; bTitle = titleList[iphasic * step + i]?.substring(1) || ''
break; break
case 3: case 3:
cTitle = titleList[iphasic * step + i]?.substring(1) || ''; cTitle = titleList[iphasic * step + i]?.substring(1) || ''
break; break
} }
} }
if (shunData[0][iphasic * step + 1] !== undefined) { if (shunData[0][iphasic * step + 1] !== undefined) {
ifmax = shunData[0][iphasic * step + 1] * xishu; ifmax = shunData[0][iphasic * step + 1] * xishu
ifmin = shunData[0][iphasic * step + 1] * xishu; ifmin = shunData[0][iphasic * step + 1] * xishu
ismax = shunData[0][iphasic * step + 1]; ismax = shunData[0][iphasic * step + 1]
ismin = shunData[0][iphasic * step + 1]; ismin = shunData[0][iphasic * step + 1]
} }
for (let shun = 0; shun < shunData.length; shun++) { for (let shun = 0; shun < shunData.length; shun++) {
if (shunData[shun][iphasic * step + 1] === undefined) { if (shunData[shun][iphasic * step + 1] === undefined) {
break; break
} }
switch (iphasic) { switch (iphasic) {
case 1: case 1:
const shunFirstA = shunData[shun][iphasic * step + 1] * xishu; const shunFirstA = shunData[shun][iphasic * step + 1] * xishu
shunshiFA.push([shunData[shun][0], shunFirstA]); shunshiFA.push([shunData[shun][0], shunFirstA])
ifmax = Math.max(ifmax, shunFirstA); ifmax = Math.max(ifmax, shunFirstA)
ifmin = Math.min(ifmin, shunFirstA); ifmin = Math.min(ifmin, shunFirstA)
const shunSecondA = shunData[shun][iphasic * step + 1]; const shunSecondA = shunData[shun][iphasic * step + 1]
shunshiSA.push([shunData[shun][0], shunSecondA]); shunshiSA.push([shunData[shun][0], shunSecondA])
ismax = Math.max(ismax, shunSecondA); ismax = Math.max(ismax, shunSecondA)
ismin = Math.min(ismin, shunSecondA); ismin = Math.min(ismin, shunSecondA)
break; break
case 2: case 2:
const shunFirstA2 = shunData[shun][iphasic * step + 1] * xishu; const shunFirstA2 = shunData[shun][iphasic * step + 1] * xishu
const shunFirstB2 = shunData[shun][iphasic * step + 2] * xishu; const shunFirstB2 = shunData[shun][iphasic * step + 2] * xishu
shunshiFA.push([shunData[shun][0], shunFirstA2]); shunshiFA.push([shunData[shun][0], shunFirstA2])
shunshiFB.push([shunData[shun][0], shunFirstB2]); shunshiFB.push([shunData[shun][0], shunFirstB2])
ifmax = Math.max(ifmax, shunFirstA2, shunFirstB2); ifmax = Math.max(ifmax, shunFirstA2, shunFirstB2)
ifmin = Math.min(ifmin, shunFirstA2, shunFirstB2); ifmin = Math.min(ifmin, shunFirstA2, shunFirstB2)
const shunSecondA2 = shunData[shun][iphasic * step + 1]; const shunSecondA2 = shunData[shun][iphasic * step + 1]
const shunSecondB2 = shunData[shun][iphasic * step + 2]; const shunSecondB2 = shunData[shun][iphasic * step + 2]
shunshiSA.push([shunData[shun][0], shunSecondA2]); shunshiSA.push([shunData[shun][0], shunSecondA2])
shunshiSB.push([shunData[shun][0], shunSecondB2]); shunshiSB.push([shunData[shun][0], shunSecondB2])
ismax = Math.max(ismax, shunSecondA2, shunSecondB2); ismax = Math.max(ismax, shunSecondA2, shunSecondB2)
ismin = Math.min(ismin, shunSecondA2, shunSecondB2); ismin = Math.min(ismin, shunSecondA2, shunSecondB2)
break; break
case 3: case 3:
const shunFirstA3 = shunData[shun][iphasic * step + 1] * xishu; const shunFirstA3 = shunData[shun][iphasic * step + 1] * xishu
const shunFirstB3 = shunData[shun][iphasic * step + 2] * xishu; const shunFirstB3 = shunData[shun][iphasic * step + 2] * xishu
const shunFirstC3 = shunData[shun][iphasic * step + 3] * xishu; const shunFirstC3 = shunData[shun][iphasic * step + 3] * xishu
shunshiFA.push([shunData[shun][0], shunFirstA3]); shunshiFA.push([shunData[shun][0], shunFirstA3])
shunshiFB.push([shunData[shun][0], shunFirstB3]); shunshiFB.push([shunData[shun][0], shunFirstB3])
shunshiFC.push([shunData[shun][0], shunFirstC3]); shunshiFC.push([shunData[shun][0], shunFirstC3])
ifmax = Math.max(ifmax, shunFirstA3, shunFirstB3, shunFirstC3); ifmax = Math.max(ifmax, shunFirstA3, shunFirstB3, shunFirstC3)
ifmin = isOpen ? Math.min(ifmin, shunFirstA3, shunFirstC3) : Math.min(ifmin, shunFirstA3, shunFirstB3, shunFirstC3); ifmin = isOpen
? Math.min(ifmin, shunFirstA3, shunFirstC3)
: Math.min(ifmin, shunFirstA3, shunFirstB3, shunFirstC3)
const shunSecondA3 = shunData[shun][iphasic * step + 1]; const shunSecondA3 = shunData[shun][iphasic * step + 1]
const shunSecondB3 = shunData[shun][iphasic * step + 2]; const shunSecondB3 = shunData[shun][iphasic * step + 2]
const shunSecondC3 = shunData[shun][iphasic * step + 3]; const shunSecondC3 = shunData[shun][iphasic * step + 3]
shunshiSA.push([shunData[shun][0], shunSecondA3]); shunshiSA.push([shunData[shun][0], shunSecondA3])
shunshiSB.push([shunData[shun][0], shunSecondB3]); shunshiSB.push([shunData[shun][0], shunSecondB3])
shunshiSC.push([shunData[shun][0], shunSecondC3]); shunshiSC.push([shunData[shun][0], shunSecondC3])
ismax = Math.max(ismax, shunSecondA3, shunSecondB3, shunSecondC3); ismax = Math.max(ismax, shunSecondA3, shunSecondB3, shunSecondC3)
ismin = isOpen ? Math.min(ismin, shunSecondA3, shunSecondC3) : Math.min(ismin, shunSecondA3, shunSecondB3, shunSecondC3); ismin = isOpen
break; ? Math.min(ismin, shunSecondA3, shunSecondC3)
: Math.min(ismin, shunSecondA3, shunSecondB3, shunSecondC3)
break
} }
} }
} }
const instantF = { max: ifmax, min: ifmin }; const instantF = { max: ifmax, min: ifmin }
const instantS = { max: ismax, min: ismin }; const instantS = { max: ismax, min: ismin }
const shunshiF = { shunshiFA, shunshiFB, shunshiFC }; const shunshiF = { shunshiFA, shunshiFB, shunshiFC }
const shunshiS = { shunshiSA, shunshiSB, shunshiSC }; const shunshiS = { shunshiSA, shunshiSB, shunshiSC }
const title = { aTitle, bTitle, cTitle, unit }; const title = { aTitle, bTitle, cTitle, unit }
return { instantF, instantS, shunshiF, shunshiS, title, unit }; return { instantF, instantS, shunshiF, shunshiS, title, unit }
}; }
// 处理标题 // 处理标题
let titles = ''; let titles = ''
if (boxoList.systemType == 'pms') { if (boxoList.systemType == 'pms') {
titles = '变电站名称:' + titles =
'变电站名称:' +
boxoList.powerStationName + boxoList.powerStationName +
' 监测点名称:' + ' 监测点名称:' +
boxoList.measurementPointName + boxoList.measurementPointName +
@@ -124,9 +135,10 @@ self.addEventListener('message', function(e) {
(boxoList.featureAmplitude * 100).toFixed(2) + (boxoList.featureAmplitude * 100).toFixed(2) +
'% 持续时间:' + '% 持续时间:' +
boxoList.duration + boxoList.duration +
's'; 's'
} else if (boxoList.systemType == 'ZL') { } else if (boxoList.systemType == 'ZL') {
titles = ' 监测点名称:' + titles =
' 监测点名称:' +
boxoList.equipmentName + boxoList.equipmentName +
' 发生时刻:' + ' 发生时刻:' +
boxoList.startTime + boxoList.startTime +
@@ -134,9 +146,21 @@ self.addEventListener('message', function(e) {
boxoList.evtParamVVaDepth + boxoList.evtParamVVaDepth +
' 持续时间:' + ' 持续时间:' +
boxoList.evtParamTm + boxoList.evtParamTm +
's'; 's'
} else if (boxoList.systemType == 'YPT') {
titles =
' 监测点名称:' +
boxoList.lineName +
' 发生时刻:' +
boxoList.startTime +
' 残余电压:' +
(boxoList.featureAmplitude * 100).toFixed(2) +
'% 持续时间:' +
boxoList.persistTime +
's'
} else { } else {
titles = '变电站名称:' + titles =
'变电站名称:' +
boxoList.subName + boxoList.subName +
' 监测点名称:' + ' 监测点名称:' +
boxoList.lineName + boxoList.lineName +
@@ -146,25 +170,25 @@ self.addEventListener('message', function(e) {
(boxoList.featureAmplitude * 100).toFixed(2) + (boxoList.featureAmplitude * 100).toFixed(2) +
'% 持续时间:' + '% 持续时间:' +
boxoList.duration + boxoList.duration +
's'; 's'
} }
const iphasicValue = wp.iphasic || 1; const iphasicValue = wp.iphasic || 1
const picCounts = (wp.waveTitle.length - 1) / iphasicValue; const picCounts = (wp.waveTitle.length - 1) / iphasicValue
const waveDatas = []; const waveDatas = []
for (let i = 0; i < picCounts; i++) { for (let i = 0; i < picCounts; i++) {
const data = fliteWaveData(wp, i); const data = fliteWaveData(wp, i)
waveDatas.push(data); waveDatas.push(data)
} }
const time = wp.time; const time = wp.time
const type = wp.waveType; const type = wp.waveType
let severity = wp.yzd; let severity = wp.yzd
if (severity < 0) { if (severity < 0) {
severity = '/'; severity = '/'
type = '/'; type = '/'
} }
// 将处理结果发送回主线程 // 将处理结果发送回主线程
@@ -175,5 +199,5 @@ self.addEventListener('message', function(e) {
severity, severity,
titles, titles,
iphasic: iphasicValue iphasic: iphasicValue
}); })
}); })

View File

@@ -1,7 +1,6 @@
<template> <template>
<div v-loading="loading" :element-loading-background="'rgba(122, 122, 122, 0.8)'" class="boxbx" <div v-loading="loading" class="boxbx" style="position: relative; height: 100%">
style="position: relative;height: 100%;"> <div id="boxsj">
<div id="boxsj" style="background: #343849c7">
<div id="shushi" :style="`height:${vh};overflow: hidden;`"> <div id="shushi" :style="`height:${vh};overflow: hidden;`">
<div class="bx" id="wave"></div> <div class="bx" id="wave"></div>
</div> </div>
@@ -14,9 +13,10 @@ import { ref, computed, onMounted, onBeforeUnmount, watch, nextTick } from 'vue'
import html2canvas from 'html2canvas' import html2canvas from 'html2canvas'
import $ from 'jquery' import $ from 'jquery'
import * as echarts from 'echarts' import * as echarts from 'echarts'
import { mainHeight } from '@/utils/layout'
import url from '@/assets/img/point.png' import url from '@/assets/img/point.png'
// 创建Worker // 创建Worker
let waveDataWorker: Worker | null = null; let waveDataWorker: Worker | null = null
interface WaveData { interface WaveData {
instantF: { max: number; min: number } instantF: { max: number; min: number }
instantS: { max: number; min: number } instantS: { max: number; min: number }
@@ -42,7 +42,7 @@ interface WaveData {
interface Props { interface Props {
value?: number value?: number
flag?: string | number | boolean flag?: string | number | boolean
parentHeight?: string | number | boolean parentHeight?: any
DColor?: boolean DColor?: boolean
boxoList?: any boxoList?: any
wp?: any wp?: any
@@ -87,29 +87,44 @@ const myChartess4 = ref<echarts.ECharts | null>(null)
const myChartess5 = ref<echarts.ECharts | null>(null) const myChartess5 = ref<echarts.ECharts | null>(null)
const vh = computed(() => { const vh = computed(() => {
if (props.flag == 1) { if (props.parentHeight == 999) {
return '690px'
} else if (props.parentHeight != 0) {
return '310px' return '310px'
} else { } else if (props.parentHeight != 0) {
return '350px' return mainHeight(props.parentHeight, 2).height
} }
if (props.flag == 1) {
return mainHeight(200).height
} else {
return mainHeight(200, 2).height
}
// if (props.flag == 1) {
// return '690px'
// } else if (props.parentHeight != 0) {
// return '310px'
// } else {
// return '350px'
// }
}) })
const vw = computed(() => '100%') const vw = computed(() => '100%')
watch(() => props.value, (newVal) => { watch(
() => props.value,
newVal => {
if (newVal == 2) { if (newVal == 2) {
initWaves() initWaves()
} else { } else {
$('#wave1').remove() $('#wave1').remove()
initWaves() initWaves()
} }
}) }
)
onMounted(() => { onMounted(() => {
const zoomValue = document.body.style.getPropertyValue('zoom'); const zoomValue = document.body.style.getPropertyValue('zoom')
zoom.value = 1 / (zoomValue ? parseFloat(zoomValue) : 1); zoom.value = 1 / (zoomValue ? parseFloat(zoomValue) : 1)
window.addEventListener('resize', handleResize) window.addEventListener('resize', handleResize)
nextTick(() => { nextTick(() => {
@@ -120,27 +135,27 @@ onMounted(() => {
}) })
onBeforeUnmount(() => { onBeforeUnmount(() => {
console.log('组件卸载'); console.log('组件卸载')
if (waveDataWorker) { if (waveDataWorker) {
waveDataWorker.terminate(); waveDataWorker.terminate()
waveDataWorker = null; waveDataWorker = null
} }
backbxlb(); backbxlb()
window.removeEventListener('resize', handleResize); window.removeEventListener('resize', handleResize)
}) })
const handleResize = () => { const handleResize = () => {
const zoomValue = document.body.style.getPropertyValue('zoom'); const zoomValue = document.body.style.getPropertyValue('zoom')
zoom.value = 1 / (zoomValue ? parseFloat(zoomValue) : 1); zoom.value = 1 / (zoomValue ? parseFloat(zoomValue) : 1)
} }
const download = () => { const download = () => {
const boxsj = document.getElementById('boxsj') const boxsj = document.getElementById('boxsj')
if (boxsj) { if (boxsj) {
html2canvas(boxsj, { html2canvas(boxsj, {
scale: 2, scale: 2
}).then(function (canvas) { }).then(function (canvas) {
const creatIMg = document.createElement('a') const creatIMg = document.createElement('a')
creatIMg.download = '瞬间波形.png' creatIMg.download = '瞬间波形.png'
@@ -170,49 +185,56 @@ const waveData = (instantF: any, instantS: any, shunshiF: any, shunshiS: any, ti
// 在组件中修改initWaves函数 // 在组件中修改initWaves函数
const initWaves = () => { const initWaves = () => {
if (props.wp) { if (props.wp) {
loading.value = true; loading.value = true
iphasic.value = props.wp.iphasic || 1 iphasic.value = props.wp.iphasic || 1
// 使用Web Worker处理数据 // 使用Web Worker处理数据
if (!waveDataWorker) { if (!waveDataWorker) {
waveDataWorker = new Worker(new URL('./shuWorker.js', import.meta.url)); waveDataWorker = new Worker(new URL('./shuWorker.js', import.meta.url))
waveDataWorker.onmessage = function (e) { waveDataWorker.onmessage = function (e) {
const data = e.data; const data = e.data
titles.value = data.titles; titles.value = data.titles
iphasic.value = data.iphasic; iphasic.value = data.iphasic
time.value = data.time; time.value = data.time
type.value = data.type; type.value = data.type
severity.value = data.severity; severity.value = data.severity
initWave(data.waveDatas, data.time, data.type, data.severity, isOpen.value); initWave(data.waveDatas, data.time, data.type, data.severity, isOpen.value)
loading.value = false; loading.value = false
}; }
waveDataWorker.onerror = function (error) { waveDataWorker.onerror = function (error) {
console.error('Worker error:', error); console.error('Worker error:', error)
loading.value = false; loading.value = false
// 备用方案:在主线程处理数据 // 备用方案:在主线程处理数据
// processDataInMainThread(); // processDataInMainThread();
}; }
} }
// 发送数据到Worker // 发送数据到Worker
waveDataWorker.postMessage(JSON.stringify({ waveDataWorker.postMessage(
JSON.stringify({
wp: props.wp, wp: props.wp,
value: props.value, value: props.value,
iphasic: iphasic.value, iphasic: iphasic.value,
isOpen: isOpen.value, isOpen: isOpen.value,
boxoList: props.boxoList boxoList: props.boxoList
})); })
)
} else { } else {
initWave(null, null, null, null, null); initWave(null, null, null, null, null)
} }
} }
const initWave = (
const initWave = (waveDatas: WaveData[] | null, time: string | null, type: string | null, severity: string | null, isOpen: boolean | null) => { waveDatas: WaveData[] | null,
time: string | null,
type: string | null,
severity: string | null,
isOpen: boolean | null
) => {
$('div.bx1').remove() $('div.bx1').remove()
let picHeight = vh.value let picHeight = vh.value
@@ -221,9 +243,14 @@ const initWave = (waveDatas: WaveData[] | null, time: string | null, type: strin
let cu: number[][] = [] let cu: number[][] = []
let titleText = '' let titleText = ''
let unit = '' let unit = ''
let max: any = 0, min: any = 0 let max: any = 0,
let a: string | null = null, b: string | null = null, c: string | null = null min: any = 0
let adata: number[][] = [], bdata: number[][] = [], cdata: number[][] = [] let a: string | null = null,
b: string | null = null,
c: string | null = null
let adata: number[][] = [],
bdata: number[][] = [],
cdata: number[][] = []
const colors: string[] = [] const colors: string[] = []
if (!waveDatas) { if (!waveDatas) {
@@ -249,7 +276,7 @@ const initWave = (waveDatas: WaveData[] | null, time: string | null, type: strin
min = waveDatas[0].instantS.min min = waveDatas[0].instantS.min
adata = waveDatas[0].shunshiS.shunshiSA adata = waveDatas[0].shunshiS.shunshiSA
} }
colors.push('#DAA520', '#fff', '#fff') colors.push('#DAA520', '#000', '#000')
break break
case 2: case 2:
a = waveDatas[0].title.aTitle a = waveDatas[0].title.aTitle
@@ -267,7 +294,7 @@ const initWave = (waveDatas: WaveData[] | null, time: string | null, type: strin
adata = waveDatas[0].shunshiS.shunshiSA adata = waveDatas[0].shunshiS.shunshiSA
bdata = waveDatas[0].shunshiS.shunshiSB bdata = waveDatas[0].shunshiS.shunshiSB
} }
colors.push('#DAA520', '#2E8B57', '#fff') colors.push('#DAA520', '#2E8B57', '#000')
break break
case 3: case 3:
a = waveDatas[0].title.aTitle a = waveDatas[0].title.aTitle
@@ -307,14 +334,34 @@ const initWave = (waveDatas: WaveData[] | null, time: string | null, type: strin
$(`#${waveId}`).css('height', picHeight).css('width', vw.value) $(`#${waveId}`).css('height', picHeight).css('width', vw.value)
} }
} else { } else {
titleText = `变电站名称:${subName.value} 监测点名称:${lineName.value} 发生时刻:${time} 残余电压:${(Number(eventValue.value) * 1).toFixed(0)}% 持续时间:${persistTime.value}s` titleText = `变电站名称:${subName.value} 监测点名称:${lineName.value} 发生时刻:${time} 残余电压:${(
Number(eventValue.value) * 1
).toFixed(0)}% 持续时间:${persistTime.value}s`
} }
const wave = document.getElementById('wave') const wave = document.getElementById('wave')
if (!wave) return if (!wave) return
const myChartes = echarts.init(wave) const myChartes = echarts.init(wave)
const echartsColor = { WordColor: "#fff", thread: "#fff", FigureColor: ["#07CCCA ", "#00BFF5", "#FFBF00", "#77DA63", "#D5FF6B", "#Ff6600", "#FF9100", "#5B6E96", "#66FFCC", "#B3B3B3", "#FF00FF", "#CC00FF", "#FF9999"] } const echartsColor = {
WordColor: '#000',
thread: '#000',
FigureColor: [
'#07CCCA ',
'#00BFF5',
'#FFBF00',
'#77DA63',
'#D5FF6B',
'#Ff6600',
'#FF9100',
'#5B6E96',
'#66FFCC',
'#B3B3B3',
'#FF00FF',
'#CC00FF',
'#FF9999'
]
}
setTimeout(() => { setTimeout(() => {
wave.style.width = '100%' wave.style.width = '100%'
@@ -335,7 +382,12 @@ const initWave = (waveDatas: WaveData[] | null, time: string | null, type: strin
let tips = '时刻:' + params[0].data[0] + '</br/>' let tips = '时刻:' + params[0].data[0] + '</br/>'
for (let i = 0; i < params.length; i++) { for (let i = 0; i < params.length; i++) {
if (params[i].seriesName != '暂降触发点') { if (params[i].seriesName != '暂降触发点') {
tips += params[i].marker + params[i].seriesName + ':' + (params[i].value[1] - 0).toFixed(2) + '<br/>' tips +=
params[i].marker +
params[i].seriesName +
':' +
(params[i].value[1] - 0).toFixed(2) +
'<br/>'
} }
} }
return tips return tips
@@ -353,8 +405,8 @@ const initWave = (waveDatas: WaveData[] | null, time: string | null, type: strin
left: 'center', left: 'center',
text: titleText, text: titleText,
textStyle: { textStyle: {
fontSize: '0.8rem', fontSize: '16px',
color: props.DColor ? '#fff' : echartsColor.WordColor color: props.DColor ? '#000' : echartsColor.WordColor
} }
}, },
legend: { legend: {
@@ -364,8 +416,8 @@ const initWave = (waveDatas: WaveData[] | null, time: string | null, type: strin
enabled: true, enabled: true,
itemDistance: 5, itemDistance: 5,
textStyle: { textStyle: {
fontSize: '0.6rem', fontSize: 12,
color: props.DColor ? '#fff' : echartsColor.WordColor, color: props.DColor ? '#000' : echartsColor.WordColor,
rich: { a: { verticalAlign: 'middle' } }, rich: { a: { verticalAlign: 'middle' } },
padding: [0, 0, 0, 0] padding: [0, 0, 0, 0]
} }
@@ -390,24 +442,24 @@ const initWave = (waveDatas: WaveData[] | null, time: string | null, type: strin
title: { title: {
text: 'ms', text: 'ms',
textStyle: { textStyle: {
fontSize: '0.6rem', fontSize: '12px',
color: props.DColor ? '#fff' : echartsColor.WordColor color: props.DColor ? '#000' : echartsColor.WordColor
}, },
enabled: true, enabled: true,
align: 'high' align: 'high'
}, },
splitLine: { show: false }, splitLine: { show: false },
nameTextStyle: { fontSize: '0.6rem' }, nameTextStyle: { fontSize: '12px' },
axisTick: { alignWithLabel: true }, axisTick: { alignWithLabel: true },
axisLine: { axisLine: {
lineStyle: { lineStyle: {
color: props.DColor ? '#fff' : echartsColor.thread color: props.DColor ? '#000' : echartsColor.thread
}, },
onZero: false onZero: false
}, },
axisLabel: { axisLabel: {
fontSize: '0.6rem', fontSize: '12px',
color: props.DColor ? '#fff' : echartsColor.WordColor, color: props.DColor ? '#000' : echartsColor.WordColor,
formatter: function (value: number) { formatter: function (value: number) {
if (valA.value != (value - 0).toFixed(0)) { if (valA.value != (value - 0).toFixed(0)) {
valA.value = Number((value - 0).toFixed(0)) valA.value = Number((value - 0).toFixed(0))
@@ -433,26 +485,26 @@ const initWave = (waveDatas: WaveData[] | null, time: string | null, type: strin
min: min.toFixed(2) > 0 ? min.toFixed(2) - min.toFixed(2) * 0.1 : min.toFixed(2) * 1.1, min: min.toFixed(2) > 0 ? min.toFixed(2) - min.toFixed(2) * 0.1 : min.toFixed(2) * 1.1,
opposite: false, opposite: false,
nameTextStyle: { nameTextStyle: {
fontSize: '0.6rem', fontSize: '12px',
color: props.DColor ? '#fff' : echartsColor.WordColor color: props.DColor ? '#000' : echartsColor.WordColor
}, },
axisLine: { axisLine: {
show: true, show: true,
lineStyle: { lineStyle: {
color: props.DColor ? '#fff' : echartsColor.thread color: props.DColor ? '#000' : echartsColor.thread
}, },
onZero: false onZero: false
}, },
axisLabel: { axisLabel: {
fontSize: '0.6rem', fontSize: '12px',
color: props.DColor ? '#fff' : echartsColor.WordColor, color: props.DColor ? '#000' : echartsColor.WordColor,
formatter: function (value: number) { formatter: function (value: number) {
return (value - 0).toFixed(2) return (value - 0).toFixed(2)
} }
}, },
splitLine: { splitLine: {
lineStyle: { lineStyle: {
color: [props.DColor ? '#fff' : echartsColor.thread], color: [props.DColor ? '#000' : echartsColor.thread],
type: 'dashed', type: 'dashed',
opacity: 0.5 opacity: 0.5
} }
@@ -460,9 +512,9 @@ const initWave = (waveDatas: WaveData[] | null, time: string | null, type: strin
}, },
grid: { grid: {
left: '1%', left: '1%',
right: '2.8%', right: '45px',
bottom: '40px', bottom: '40px',
top: '70px', top: '60px',
containLabel: true containLabel: true
}, },
dataZoom: [ dataZoom: [
@@ -537,23 +589,36 @@ const initWave = (waveDatas: WaveData[] | null, time: string | null, type: strin
} }
} }
const drawPics = (waveDataTemp: WaveData, picHeight: string, step: number, show: boolean, myChartes1: echarts.ECharts, title: string) => { const drawPics = (
waveDataTemp: WaveData,
picHeight: string,
step: number,
show: boolean,
myChartes1: echarts.ECharts,
title: string
) => {
step = step + 1 step = step + 1
const waveId = 'wave' + step const waveId = 'wave' + step
let a: string | null = null, b: string | null = null, c: string | null = null let a: string | null = null,
let max: any = 0, min: any = 0, unit = '' b: string | null = null,
let adata: number[][] = [], bdata: number[][] = [], cdata: number[][] = [] c: string | null = null
let max: any = 0,
min: any = 0,
unit = ''
let adata: number[][] = [],
bdata: number[][] = [],
cdata: number[][] = []
const colors: string[] = [] const colors: string[] = []
switch (iphasic.value) { switch (iphasic.value) {
case 1: case 1:
a = waveDataTemp.title.aTitle a = waveDataTemp.title.aTitle
colors.push('#DAA520', '#fff', '#fff') colors.push('#DAA520', '#000', '#000')
break break
case 2: case 2:
a = waveDataTemp.title.aTitle a = waveDataTemp.title.aTitle
b = waveDataTemp.title.bTitle b = waveDataTemp.title.bTitle
colors.push('#DAA520', '#2E8B57', '#fff') colors.push('#DAA520', '#2E8B57', '#000')
break break
case 3: case 3:
a = waveDataTemp.title.aTitle a = waveDataTemp.title.aTitle
@@ -612,7 +677,25 @@ const drawPics = (waveDataTemp: WaveData, picHeight: string, step: number, show:
if (!waveIds) return if (!waveIds) return
const myChartes = echarts.init(waveIds) const myChartes = echarts.init(waveIds)
const echartsColor = { WordColor: "#fff", thread: "#fff", FigureColor: ["#07CCCA ", "#00BFF5", "#FFBF00", "#77DA63", "#D5FF6B", "#Ff6600", "#FF9100", "#5B6E96", "#66FFCC", "#B3B3B3", "#FF00FF", "#CC00FF", "#FF9999"] } const echartsColor = {
WordColor: '#000',
thread: '#000',
FigureColor: [
'#07CCCA ',
'#00BFF5',
'#FFBF00',
'#77DA63',
'#D5FF6B',
'#Ff6600',
'#FF9100',
'#5B6E96',
'#66FFCC',
'#B3B3B3',
'#FF00FF',
'#CC00FF',
'#FF9999'
]
}
const option = { const option = {
tooltip: { tooltip: {
@@ -640,8 +723,8 @@ const drawPics = (waveDataTemp: WaveData, picHeight: string, step: number, show:
left: 'center', left: 'center',
text: '', //titlename || title, text: '', //titlename || title,
textStyle: { textStyle: {
fontSize: '0.8rem', fontSize: '16px',
color: props.DColor ? '#fff' : echartsColor.WordColor color: props.DColor ? '#000' : echartsColor.WordColor
} }
}, },
legend: { legend: {
@@ -651,8 +734,8 @@ const drawPics = (waveDataTemp: WaveData, picHeight: string, step: number, show:
enabled: true, enabled: true,
itemDistance: 5, itemDistance: 5,
textStyle: { textStyle: {
fontSize: '0.6rem', fontSize: 12,
color: props.DColor ? '#fff' : echartsColor.WordColor, color: props.DColor ? '#000' : echartsColor.WordColor,
rich: { a: { verticalAlign: 'middle' } }, rich: { a: { verticalAlign: 'middle' } },
padding: [0, 0, 0, 0] padding: [0, 0, 0, 0]
} }
@@ -666,8 +749,8 @@ const drawPics = (waveDataTemp: WaveData, picHeight: string, step: number, show:
title: { title: {
text: 'ms', text: 'ms',
textStyle: { textStyle: {
fontSize: '0.6rem', fontSize: '12px',
color: props.DColor ? '#fff' : echartsColor.WordColor color: props.DColor ? '#000' : echartsColor.WordColor
}, },
enabled: true, enabled: true,
align: 'high' align: 'high'
@@ -676,14 +759,14 @@ const drawPics = (waveDataTemp: WaveData, picHeight: string, step: number, show:
axisTick: { alignWithLabel: true }, axisTick: { alignWithLabel: true },
axisLine: { axisLine: {
lineStyle: { lineStyle: {
color: props.DColor ? '#fff' : echartsColor.thread color: props.DColor ? '#000' : echartsColor.thread
}, },
onZero: false onZero: false
}, },
nameTextStyle: { fontSize: '0.6rem' }, nameTextStyle: { fontSize: '12px' },
axisLabel: { axisLabel: {
fontSize: '0.6rem', fontSize: '12px',
color: props.DColor ? '#fff' : echartsColor.WordColor, color: props.DColor ? '#000' : echartsColor.WordColor,
formatter: function (value: number) { formatter: function (value: number) {
if (valB.value != (value - 0).toFixed(0)) { if (valB.value != (value - 0).toFixed(0)) {
valB.value = Number((value - 0).toFixed(0)) valB.value = Number((value - 0).toFixed(0))
@@ -709,26 +792,26 @@ const drawPics = (waveDataTemp: WaveData, picHeight: string, step: number, show:
min: min.toFixed(2) > 0 ? min.toFixed(2) - min.toFixed(2) * 0.1 : min.toFixed(2) * 1.1, min: min.toFixed(2) > 0 ? min.toFixed(2) - min.toFixed(2) * 0.1 : min.toFixed(2) * 1.1,
opposite: false, opposite: false,
nameTextStyle: { nameTextStyle: {
fontSize: '0.6rem', fontSize: '12px',
color: props.DColor ? '#fff' : echartsColor.WordColor color: props.DColor ? '#000' : echartsColor.WordColor
}, },
axisLine: { axisLine: {
show: true, show: true,
lineStyle: { lineStyle: {
color: props.DColor ? '#fff' : echartsColor.thread color: props.DColor ? '#000' : echartsColor.thread
}, },
onZero: false onZero: false
}, },
axisLabel: { axisLabel: {
fontSize: '0.6rem', fontSize: '12px',
color: props.DColor ? '#fff' : echartsColor.WordColor, color: props.DColor ? '#000' : echartsColor.WordColor,
formatter: function (value: number) { formatter: function (value: number) {
return (value - 0).toFixed(2) return (value - 0).toFixed(2)
} }
}, },
splitLine: { splitLine: {
lineStyle: { lineStyle: {
color: [props.DColor ? '#fff' : echartsColor.thread], color: [props.DColor ? '#000' : echartsColor.thread],
type: 'dashed', type: 'dashed',
opacity: 0.5 opacity: 0.5
} }
@@ -736,9 +819,9 @@ const drawPics = (waveDataTemp: WaveData, picHeight: string, step: number, show:
}, },
grid: { grid: {
left: '1%', left: '1%',
right: '2.8%', right: '45px',
bottom: '40px', bottom: '40px',
top: '70px', top: '60px',
containLabel: true containLabel: true
}, },
dataZoom: [ dataZoom: [
@@ -793,11 +876,21 @@ const drawPics = (waveDataTemp: WaveData, picHeight: string, step: number, show:
myChartes.setOption(option) myChartes.setOption(option)
switch (step) { switch (step) {
case 1: myChartess1.value = myChartes; break case 1:
case 2: myChartess2.value = myChartes; break myChartess1.value = myChartes
case 3: myChartess3.value = myChartes; break break
case 4: myChartess4.value = myChartes; break case 2:
case 5: myChartess5.value = myChartes; break myChartess2.value = myChartes
break
case 3:
myChartess3.value = myChartes
break
case 4:
myChartess4.value = myChartes
break
case 5:
myChartess5.value = myChartes
break
} }
setTimeout(() => { setTimeout(() => {
@@ -810,7 +903,14 @@ const drawPics = (waveDataTemp: WaveData, picHeight: string, step: number, show:
const backbxlb = () => { const backbxlb = () => {
waveDatas.value = [] waveDatas.value = []
const charts = [myChartess.value, myChartess1.value, myChartess2.value, myChartess3.value, myChartess4.value, myChartess5.value] const charts = [
myChartess.value,
myChartess1.value,
myChartess2.value,
myChartess3.value,
myChartess4.value,
myChartess5.value
]
charts.forEach(chart => { charts.forEach(chart => {
if (chart) { if (chart) {
@@ -826,13 +926,11 @@ const backbxlb = () => {
myChartess5.value = null myChartess5.value = null
// echarts.disconnect(charts.filter(Boolean) as echarts.ECharts[]) // echarts.disconnect(charts.filter(Boolean) as echarts.ECharts[])
charts charts.filter(Boolean).forEach(chart => {
.filter(Boolean)
.forEach(chart => {
if (chart && typeof chart.dispose === 'function') { if (chart && typeof chart.dispose === 'function') {
chart.dispose(); chart.dispose()
} }
}); })
} }
const getMax = (temp: number, tempA: number, tempB: number, tempC: number): number => { const getMax = (temp: number, tempA: number, tempB: number, tempC: number): number => {

View File

@@ -88,6 +88,7 @@ interface Props {
theCurrentTime?: boolean //控制时间前3天展示上个月时间 theCurrentTime?: boolean //控制时间前3天展示上个月时间
showReset?: boolean //是否显示重置 showReset?: boolean //是否显示重置
showExport?: boolean //导出控制 showExport?: boolean //导出控制
timeCacheFlag?: boolean //是否取缓存时间
} }
const props = withDefaults(defineProps<Props>(), { const props = withDefaults(defineProps<Props>(), {
@@ -97,7 +98,8 @@ const props = withDefaults(defineProps<Props>(), {
nextFlag: false, nextFlag: false,
theCurrentTime: true, theCurrentTime: true,
showReset: true, showReset: true,
showExport: false showExport: false,
timeCacheFlag: true
}) })
// 处理 DatePicker 值变化事件 // 处理 DatePicker 值变化事件
@@ -134,7 +136,7 @@ onMounted(() => {
if (props.datePicker && datePickerRef.value) { if (props.datePicker && datePickerRef.value) {
// 从缓存中获取值并设置 // 从缓存中获取值并设置
const cached = timeCacheStore.getCache(route.path) const cached = timeCacheStore.getCache(route.path)
if (cached) { if (props.timeCacheFlag && cached) {
if (cached.interval !== undefined) { if (cached.interval !== undefined) {
datePickerRef.value.setInterval(cached.interval) datePickerRef.value.setInterval(cached.interval)
} }

View File

@@ -67,7 +67,8 @@ function createAxios<Data = any, T = ApiPromise<Data>>(
config.url == '/system-boot/file/upload' || config.url == '/system-boot/file/upload' ||
config.url == '/harmonic-boot/grid/getAssessOverview' || config.url == '/harmonic-boot/grid/getAssessOverview' ||
config.url == '/harmonic-boot/gridDiagram/getGridDiagramAreaData' || config.url == '/harmonic-boot/gridDiagram/getGridDiagramAreaData' ||
config.url == '/cs-device-boot/csline/list' config.url == '/cs-device-boot/csline/list' ||
config.url == '/cs-harmonic-boot/pqSensitiveUser/getListByIds'
) )
) )
removePending(config) removePending(config)

View File

@@ -16,24 +16,34 @@
<el-radio-group v-model.trim="theTypeOfValue" @change="changeView"> <el-radio-group v-model.trim="theTypeOfValue" @change="changeView">
<el-radio-button label="一次值" :value="1" /> <el-radio-button label="一次值" :value="1" />
<el-radio-button label="二次值" :value="2" /> <el-radio-button label="二次值" :value="2" />
</el-radio-group> </el-radio-group>
<el-button @click="handleBack" :icon="Back">返回</el-button> <el-button @click="handleBack" :icon="Back">返回</el-button>
</div> </div>
<el-tabs class="home_body" type="border-card" v-model.trim="activeName1" @tab-click="handleClick" <el-tabs
v-loading="loading"> class="home_body"
type="border-card"
<el-tab-pane label="瞬时波形" name="ssbx" :style="'height:' + bxecharts + ';overflow-y: scroll;'"> v-model.trim="activeName1"
<shushiboxi v-if="isWp && wp && activeName == 'ssbx' && showBoxi" :value="value" :boxoList="boxoList" @tab-click="handleClick"
:parentHeight="parentHeight" :wp="wp"> v-loading="loading"
</shushiboxi> >
<el-tab-pane label="瞬时波形" name="ssbx" :style="'height:' + bxecharts + ';overflow-y: auto;'">
<shushiboxi
v-if="isWp && wp && activeName == 'ssbx' && showBoxi"
:value="value"
:boxoList="boxoList"
:parentHeight="parentHeight"
:wp="wp"
></shushiboxi>
</el-tab-pane> </el-tab-pane>
<el-tab-pane label="RMS波形" name="rmsbx" :style="'height:' + bxecharts + ';overflow-y: scroll;'"> <el-tab-pane label="RMS波形" name="rmsbx" :style="'height:' + bxecharts + ';overflow-y: auto;'">
<rmsboxi v-if="isWp && wp && activeName == 'rmsbx' && showBoxi" :value="value" :boxoList="boxoList" <rmsboxi
:parentHeight="parentHeight" :wp="wp"> v-if="isWp && wp && activeName == 'rmsbx' && showBoxi"
</rmsboxi> :value="value"
:boxoList="boxoList"
:parentHeight="parentHeight"
:wp="wp"
></rmsboxi>
</el-tab-pane> </el-tab-pane>
</el-tabs> </el-tabs>
</div> </div>
@@ -96,15 +106,12 @@ const wp = ref({})
const theTypeOfValue = ref(1) const theTypeOfValue = ref(1)
const value = ref(1) const value = ref(1)
const isWp = ref(false) const isWp = ref(false)
const boxoList: any = ref([]) const boxoList: any = ref([])
const getWpData = (val: any, list: any) => { const getWpData = (val: any, list: any) => {
wp.value = val wp.value = val
isWp.value = true isWp.value = true
boxoList.value = list boxoList.value = list
console.log(wp.value, val, 'ggggghhhh')
} }
const changeView = () => { const changeView = () => {
showBoxi.value = false showBoxi.value = false
@@ -131,13 +138,13 @@ const handleClick = (tab: any, event: any) => {
const handleBack = () => { const handleBack = () => {
emit('handleHideCharts') emit('handleHideCharts')
} }
const setHeight = (h: any, vh: any) => { const setHeight = (h: any, vh: any, num = 1) => {
if (h != false) { if (h != false) {
parentHeight.value = h parentHeight.value = h
} }
setTimeout(() => { setTimeout(() => {
bxecharts.value = mainHeight(vh).height bxecharts.value = mainHeight(vh,num).height
}, 100) }, 100)
} }
onMounted(() => {}) onMounted(() => {})
@@ -165,7 +172,6 @@ defineExpose({ getWpData, setHeight })
position: relative; position: relative;
.home_header { .home_header {
height: 50px; height: 50px;
display: flex; display: flex;
align-items: center; align-items: center;

View File

@@ -3,8 +3,12 @@
<TableHeader> <TableHeader>
<template v-slot:select> <template v-slot:select>
<el-form-item label="项目名称"> <el-form-item label="项目名称">
<el-input maxlength="32" show-word-limit v-model.trim="tableStore.table.params.searchValue" <el-input
placeholder="请输入项目名称"></el-input> maxlength="32"
show-word-limit
v-model.trim="tableStore.table.params.searchValue"
placeholder="请输入项目名称"
></el-input>
</el-form-item> </el-form-item>
</template> </template>
<template v-slot:operation> <template v-slot:operation>
@@ -12,45 +16,75 @@
</template> </template>
</TableHeader> </TableHeader>
<!-- <Table ref="tableRef" /> --> <!-- <Table ref="tableRef" /> -->
<div style="overflow-x: hidden; overflow-y: scroll;padding: 0 10px;" v-loading="tableStore.table.loading" <div
:style="{ height: tableStore.table.height }"> style="overflow-x: hidden; overflow-y: scroll; padding: 0 10px"
v-loading="tableStore.table.loading"
:style="{ height: tableStore.table.height }"
>
<el-row :gutter="12"> <el-row :gutter="12">
<el-col :span="6" v-for="item in tableStore.table.data" :key="item.id" class="mt10"> <el-col :span="6" v-for="item in tableStore.table.data" :key="item.id" class="mt10">
<el-card class="box-card" @click="querdata(item)" shadow="hover"> <el-card class="box-card" @click="querdata(item)" shadow="hover">
<div slot="header" class="clearfix"> <div slot="header" class="clearfix">
<span style="display: flex;align-items: center">{{ item.name }} <span style="display: flex; align-items: center">
{{ item.name }}
<el-tooltip class="item" effect="dark" content="修改项目" placement="top"> <el-tooltip class="item" effect="dark" content="修改项目" placement="top">
<Edit style="margin-left: 5px;width: 16px;" class=" xiaoshou color" <Edit
@click="editd(item)" /> style="margin-left: 5px; width: 16px"
</el-tooltip></span> class="xiaoshou color"
<div style="display: flex;justify-content: end;"> @click="editd(item)"
<el-button class="color" icon="el-icon-Share" style="padding: 3px 0" type="text" />
@click="Aclick(item)">设计</el-button> </el-tooltip>
</span>
<div style="display: flex; justify-content: end">
<el-button
class="color"
icon="el-icon-Share"
style="padding: 3px 0"
type="text"
@click="Aclick(item)"
>
设计
</el-button>
<!-- <el-button icon="el-icon-share" style="padding: 3px 0; color: green" <!-- <el-button icon="el-icon-share" style="padding: 3px 0; color: green"
type="text" @click="shejid(item)">设计</el-button> --> type="text" @click="shejid(item)">设计</el-button> -->
<!-- <el-button icon="el-icon-edit" style="padding: 3px 0; color: blue" type="text" <!-- <el-button icon="el-icon-edit" style="padding: 3px 0; color: blue" type="text"
@click="shejid(item)">编辑</el-button> --> @click="shejid(item)">编辑</el-button> -->
<el-button icon="el-icon-Delete" style="padding: 3px 0; color: red" type="text" <el-button
@click="deleted(item)">删除</el-button> icon="el-icon-Delete"
style="padding: 3px 0; color: red"
type="text"
@click="deleted(item)"
>
删除
</el-button>
</div> </div>
</div> </div>
<img v-if="item.fileContent" :src="item.fileContent" class="image xiaoshou" @click="imgData(item)" /> <img
<el-empty v-else description="暂无设计" style="height: 220px;"/> v-if="item.fileContent"
:src="item.fileContent"
class="image xiaoshou"
@click="imgData(item)"
/>
<el-empty v-else description="暂无设计" style="height: 220px" />
</el-card> </el-card>
</el-col> </el-col>
</el-row> </el-row>
</div> </div>
<div class="table-pagination"> <div class="table-pagination">
<el-pagination :currentPage="tableStore.table.params!.pageNum" <el-pagination
:page-size="tableStore.table.params!.pageSize" :page-sizes="[10, 20, 50, 100]" background :currentPage="tableStore.table.params!.pageNum"
:layout="'sizes,total, ->, prev, pager, next, jumper'" :total="tableStore.table.total" :page-size="tableStore.table.params!.pageSize"
@size-change="onTableSizeChange" @current-change="onTableCurrentChange"></el-pagination> :page-sizes="[10, 20, 50, 100]"
background
:layout="'sizes,total, ->, prev, pager, next, jumper'"
:total="tableStore.table.total"
@size-change="onTableSizeChange"
@current-change="onTableCurrentChange"
></el-pagination>
</div> </div>
<popup ref="popupRef" @submit="tableStore.index()" /> <popup ref="popupRef" @submit="tableStore.index()" />
</div> </div>
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
@@ -61,9 +95,12 @@ import TableStore from '@/utils/tableStore'
import TableHeader from '@/components/table/header/index.vue' import TableHeader from '@/components/table/header/index.vue'
import { deleteTopoTemplate, uploadTopo } from '@/api/cs-device-boot/topologyTemplate' import { deleteTopoTemplate, uploadTopo } from '@/api/cs-device-boot/topologyTemplate'
import { ElMessage, ElMessageBox } from 'element-plus' import { ElMessage, ElMessageBox } from 'element-plus'
import { audit, add } from '@/api/cs-harmonic-boot/mxgraph'; import { audit, add } from '@/api/cs-harmonic-boot/mxgraph'
import { Edit } from '@element-plus/icons-vue' import { Edit } from '@element-plus/icons-vue'
import popup from './components/popup.vue' import popup from './components/popup.vue'
const VITE_FLAG = import.meta.env.VITE_NAME == 'ypt'
defineOptions({ defineOptions({
name: 'mxgraph/graph-list' name: 'mxgraph/graph-list'
}) })
@@ -78,11 +115,8 @@ const tableStore = new TableStore({
url: '/cs-harmonic-boot/csconfiguration/queryPage', url: '/cs-harmonic-boot/csconfiguration/queryPage',
method: 'POST', method: 'POST',
publicHeight: 60, publicHeight: 60,
column: [ column: [],
], loadCallback: () => {}
loadCallback: () => {
}
}) })
provide('tableStore', tableStore) provide('tableStore', tableStore)
tableStore.table.params.searchValue = '' tableStore.table.params.searchValue = ''
@@ -93,7 +127,6 @@ onMounted(() => {
}) })
// 查询 // 查询
const onSubmitadd = () => { const onSubmitadd = () => {
popupRef.value.open({ popupRef.value.open({
title: '新增项目' title: '新增项目'
}) })
@@ -107,45 +140,48 @@ const editd = (e: any) => {
} }
// 设计 // 设计
const Aclick = (e: any) => { const Aclick = (e: any) => {
window.open(window.location.origin + `/zutai/?id=${e.id}&&name=${e.name}&&preview=false&&graphicDisplay=zl`) //window.open(window.location.origin + `/zutai/?id=${e.id}&&name=${e.name}&&preview=false&&graphicDisplay=zl`)
// window.open('http://192.168.1.128:4001' + `/zutai/?id=${e.id}&&name=${e.name}&&preview=false&&graphicDisplay=zl`) window.open(
'http://192.168.1.179:4001' +
`/zutai/?id=${e.id}&&name=${e.name}&&preview=false&&graphicDisplay=${VITE_FLAG ? 'ypt' : 'zl'}`
)
} }
// 删除 // 删除
const deleted = (e: any) => { const deleted = (e: any) => {
ElMessageBox.confirm("此操作将永久删除该项目, 是否继续?", "提示", { ElMessageBox.confirm('此操作将永久删除该项目, 是否继续?', '提示', {
confirmButtonText: "确定", confirmButtonText: '确定',
cancelButtonText: "取消", cancelButtonText: '取消',
type: "warning", type: 'warning'
}) })
.then(() => { .then(() => {
let data = { let data = {
id: e.id, id: e.id,
name: e.name, name: e.name,
status: "0", status: '0'
}; }
audit(data).then((res: any) => { audit(data).then((res: any) => {
if (res.code == "A0000") { if (res.code == 'A0000') {
ElMessage({ ElMessage({
type: "success", type: 'success',
message: "删除项目成功!", message: '删除项目成功!'
}); })
} }
tableStore.index() tableStore.index()
}); })
}) })
.catch(() => { .catch(() => {
ElMessage({ ElMessage({
type: "info", type: 'info',
message: "已取消删除", message: '已取消删除'
}); })
}); })
} }
const imgData = (e: any) => { const imgData = (e: any) => {
window.open(window.location.origin + `/zutai/?id=${e.id}&&name=${e.name}&&preview=true&&graphicDisplay=zl#/preview_ZL`) window.open(
window.location.origin + `/zutai/?id=${e.id}&&name=${e.name}&&preview=true&&graphicDisplay=${VITE_FLAG ? 'ypt' : 'zl'}#/preview_ZL`
)
// window.open('http://192.168.1.128:4001' + `/zutai/?id=${e.id}&&name=${e.name}&&preview=true&&graphicDisplay=zl#/preview_ZL`) // window.open('http://192.168.1.128:4001' + `/zutai/?id=${e.id}&&name=${e.name}&&preview=true&&graphicDisplay=zl#/preview_ZL`)
} }
const onTableSizeChange = (val: number) => { const onTableSizeChange = (val: number) => {
@@ -155,7 +191,6 @@ const onTableSizeChange = (val: number) => {
const onTableCurrentChange = (val: number) => { const onTableCurrentChange = (val: number) => {
tableStore.onTableAction('current-page-change', { page: val }) tableStore.onTableAction('current-page-change', { page: val })
} }
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.text { .text {
@@ -179,7 +214,7 @@ span {
.clearfix::before, .clearfix::before,
.clearfix::after { .clearfix::after {
display: table; display: table;
content: ""; content: '';
} }
.clearfix::after { .clearfix::after {
@@ -189,7 +224,7 @@ span {
.box-card { .box-card {
width: 100%; width: 100%;
// border: 1px solid #000; // border: 1px solid #000;
box-shadow: var(--el-box-shadow-light) box-shadow: var(--el-box-shadow-light);
} }
.xiaoshou { .xiaoshou {

View File

@@ -35,7 +35,7 @@ const departmentRef = ref()
const show = ref(true) const show = ref(true)
const lookShow = ref(true) const lookShow = ref(true)
const tableStore: any = new TableStore({ const tableStore: any = new TableStore({
url: '/harmonic-boot/customReport/getTemplateList', url: '/cs-harmonic-boot/customReport/getTemplateList',
method: 'POST', method: 'POST',
isWebPaging: true, isWebPaging: true,
column: [ column: [

View File

@@ -0,0 +1,106 @@
<template>
<el-dialog class="cn-operate-dialog" width="600px" v-model.trim="dialogVisible" :title="title">
<el-form :model="form" label-width="auto" ref="formRef" :rules="rules">
<el-form-item label="所属厂站名称" prop="substationName">
<el-input v-model.trim="form.substationName" placeholder="请输入所属厂站名称"></el-input>
</el-form-item>
<el-form-item label="敏感用户名称" prop="name">
<el-input v-model.trim="form.name" placeholder="请输入敏感用户名称"></el-input>
</el-form-item>
<el-form-item label="敏感负荷类型" prop="loadType">
<el-select v-model.trim="form.loadType" filterable clearable placeholder="请选择数据分类">
<el-option
v-for="item in DataTypeSelect"
:key="item.id"
:label="item.name"
:value="item.id"
></el-option>
</el-select>
</el-form-item>
<el-form-item label="用户协议容量(MVA)" prop="userAgreementCapacity">
<el-input-number style="width: 100%;" :min="0" maxlength="32" show-word-limit v-model.trim="form.userAgreementCapacity" placeholder="请输入用户协议容量"></el-input-number>
</el-form-item>
<el-form-item label="装机容量(MW)" prop="installedCapacity">
<el-input-number style="width: 100%;" :min="0" maxlength="32" show-word-limit v-model.trim="form.installedCapacity" placeholder="请输入装机容量"></el-input-number>
</el-form-item>
<el-form-item label="排序" prop="sort">
<el-input-number style="width: 100%;" :min="0" maxlength="32" show-word-limit v-model.trim="form.sort" placeholder="请输入排序"></el-input-number>
</el-form-item>
</el-form>
<template #footer>
<span class="dialog-footer">
<el-button @click="dialogVisible = false">取消</el-button>
<el-button type="primary" @click="submit">确认</el-button>
</span>
</template>
</el-dialog>
</template>
<script lang="ts" setup>
import { ref,inject } from 'vue'
import { reactive } from 'vue'
import { ElMessage } from 'element-plus'
import TableStore from '@/utils/tableStore'
import { queryByCode, queryCsDictTree } from '@/api/system-boot/dictTree'
import { saveUser, updateUser } from '@/api/cs-device-boot/sensitiveLoadMange'
import { useDictData } from '@/stores/dictData'
const TypeOptions = ref()
const dictData = useDictData()
const DataTypeSelect = dictData.getBasicData('Sensitive_User_Type')
const tableStore = inject('tableStore') as TableStore
const formRef = ref()
const form = reactive<any>({
loadType: [],
substationName: null,
installedCapacity: null,
name: null,
userAgreementCapacity:null,
id: null,
sort:100
})
const rules = {
substationName: [{ required: true, message: '所属厂站名称不能为空', trigger: 'blur' }],
name: [{ required: true, message: '敏感用户名称不能为空', trigger: 'blur' }],
loadType: [{ required: true, message: '请选择敏感负荷类型', trigger: 'blur' }],
installedCapacity: [{ required: true, message: '用户协议容量不能为空', trigger: 'blur' }],
userAgreementCapacity: [{ required: true, message: '装机容量不能为空', trigger: 'blur' }],
sort: [{ required: true, message: '排序不能为空', trigger: 'blur' }]
}
const dialogVisible = ref(false)
const title = ref('新增')
const open = (text: string, data?: anyObj) => {
title.value = text
dialogVisible.value = true
if (data) {
for (let key in form) {
form[key] = data[key]
}
} else {
for (let key in form) {
form[key] = null
form.sort = 100
}
}
}
const submit = () => {
formRef.value.validate(async (valid: boolean) => {
if (valid) {
if (form.id) {
await updateUser(form)
} else {
await saveUser(form)
}
ElMessage.success('操作成功')
tableStore.index()
dialogVisible.value = false
}
})
}
defineExpose({ open })
</script>

View File

@@ -0,0 +1,105 @@
<template>
<div class="default-main">
<TableHeader date-picker>
<template #operation>
<el-button :icon="Plus" type="primary" @click="addMenu" class="ml10">新增</el-button>
</template>
</TableHeader>
<Table ref="tableRef" />
<detail ref="detail"></detail>
</div>
</template>
<script setup lang="ts">
import { ref, onMounted, provide } from 'vue'
import TableStore from '@/utils/tableStore'
import Table from '@/components/table/index.vue'
import TableHeader from '@/components/table/header/index.vue'
import Detail from './detail.vue'
import { ElMessage } from 'element-plus'
import { deleteUser } from '@/api/cs-device-boot/sensitiveLoadMange'
import { Plus } from '@element-plus/icons-vue'
import { useDictData } from '@/stores/dictData'
defineOptions({
name: 'govern/device/sensitiveLoadMange'
})
const detail = ref()
const dictData = useDictData()
const interferenceType = dictData.getBasicData('Sensitive_User_Type')
const tableStore: any = new TableStore({
url: '/cs-harmonic-boot/pqSensitiveUser/getList',
method: 'POST',
column: [
{
title: '序号',
width: 80,
formatter: (row: any) => {
return (tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize + row.rowIndex + 1
}
},
{ title: '所属厂站名称', field: 'substationName', minWidth: 180 },
{ title: '敏感用户名称', field: 'name', minWidth: 180 },
{
title: '敏感负荷类型',
field: 'loadType',
minWidth: 120,
formatter: row => {
return interferenceType.filter(item => item.id == row.cellValue)[0]?.name
}
},
{ title: '用户协议容量(MVA)', field: 'userAgreementCapacity', minWidth: 100 },
{ title: '装机容量(MW)', field: 'installedCapacity', minWidth: 100 },
{
title: '操作',
align: 'center',
width: '180',
fixed: 'right',
render: 'buttons',
buttons: [
{
name: 'edit',
title: '编辑',
type: 'primary',
icon: 'el-icon-EditPen',
render: 'basicButton',
click: row => {
detail.value.open('编辑', row)
}
},
{
name: 'del',
title: '删除',
type: 'danger',
icon: 'el-icon-Delete',
render: 'confirmButton',
popconfirm: {
confirmButtonText: '确认',
cancelButtonText: '取消',
confirmButtonType: 'danger',
title: '确定删除吗?'
},
click: row => {
deleteUser([row.id]).then(res => {
ElMessage.success('删除成功')
tableStore.index()
})
}
}
]
}
],
loadCallback: () => {}
})
tableStore.table.params.searchValue = ''
provide('tableStore', tableStore)
onMounted(() => {
tableStore.index()
})
const addMenu = () => {
detail.value.open('新增')
}
</script>

View File

@@ -26,7 +26,7 @@
<el-card class="bottom-container " style="min-height: 230px;"> <el-card class="bottom-container " style="min-height: 230px;">
<div class="buttonBox"> <div class="buttonBox">
<el-button type="primary" icon="el-icon-Aim">复位</el-button> <el-button type="primary" icon="el-icon-Aim" @click="reset">复位</el-button>
</div> </div>
<div class="tableBox"> <div class="tableBox">
<Table ref="tableRef" height="100%"></Table> <Table ref="tableRef" height="100%"></Table>
@@ -125,6 +125,10 @@ provide('tableRef', tableRef)
const pageHeight = mainHeight(40) const pageHeight = mainHeight(40)
provide('tableStore', tableStore) provide('tableStore', tableStore)
const reset = () => {
tableRef.value.reset()
}
const iframeSrc = ref('') const iframeSrc = ref('')
// 监听 props 变化 // 监听 props 变化

View File

@@ -35,7 +35,7 @@ const departmentRef = ref()
const show = ref(true) const show = ref(true)
const lookShow = ref(true) const lookShow = ref(true)
const tableStore: any = new TableStore({ const tableStore: any = new TableStore({
url: '/harmonic-boot/customReport/getTemplateList', url: '/cs-harmonic-boot/customReport/getTemplateList',
method: 'POST', method: 'POST',
isWebPaging: true, isWebPaging: true,
column: [ column: [