修改报表样式

This commit is contained in:
guanj
2025-12-09 13:58:37 +08:00
parent 4e0db29ab1
commit 4e6bd55089
13 changed files with 39 additions and 37 deletions

View File

@@ -258,7 +258,7 @@ self.onmessage = function (e) {
boxoList.measurementPointName +
' 发生时刻:' +
boxoList.startTime +
' 残余电压' +
' 暂降(骤升)幅值' +
(boxoList.featureAmplitude * 100).toFixed(2) +
'% 持续时间:' +
boxoList.duration +
@@ -269,7 +269,7 @@ self.onmessage = function (e) {
boxoList.equipmentName +
' 发生时刻:' +
boxoList.startTime +
' 残余电压' +
' 暂降(骤升)幅值' +
boxoList.evtParamVVaDepth +
' 持续时间:' +
boxoList.evtParamTm +
@@ -280,7 +280,7 @@ self.onmessage = function (e) {
boxoList.lineName +
' 发生时刻:' +
boxoList.startTime +
' 残余电压' +
' 暂降(骤升)幅值' +
(boxoList.featureAmplitude * 100).toFixed(2) +
'% 持续时间:' +
boxoList.persistTime +
@@ -293,7 +293,7 @@ self.onmessage = function (e) {
boxoList.lineName +
' 发生时刻:' +
boxoList.startTime +
' 残余电压' +
' 暂降(骤升)幅值' +
(boxoList.featureAmplitude * 100).toFixed(2) +
'% 持续时间:' +
boxoList.duration +

View File

@@ -109,7 +109,7 @@ const myChartess5 = ref<echarts.ECharts | null>(null)
const vh = computed(() => {
if (props.parentHeight == 999) {
return '310px'
return `calc((60vh - 150px) / 2 )`
} else if (props.parentHeight != 0) {
return mainHeight(props.parentHeight, 2).height
}
@@ -600,7 +600,7 @@ const initWave = (
$(`#${rmsId}`).css('height', picHeight).css('width', vw.value)
}
} else {
titleText = `变电站名称:${subName.value} 监测点名称:${lineName.value} 发生时刻:${time} 残余电压${(
titleText = `变电站名称:${subName.value} 监测点名称:${lineName.value} 发生时刻:${time} 暂降(骤升)幅值${(
Number(eventValue.value) * 1
).toFixed(0)}% 持续时间:${persistTime.value}s`
}
@@ -837,7 +837,7 @@ const initWave = (
data: rmscu
},
{
name: '最小残余电压',
name: '最小暂降(骤升)幅值',
type: 'scatter',
symbol: 'image://' + url2,
itemStyle: { width: 45, height: 45 },

View File

@@ -131,7 +131,7 @@ self.addEventListener('message', function (e) {
boxoList.measurementPointName +
' 发生时刻:' +
boxoList.startTime +
' 残余电压' +
' 暂降(骤升)幅值' +
(boxoList.featureAmplitude * 100).toFixed(2) +
'% 持续时间:' +
boxoList.duration +
@@ -142,7 +142,7 @@ self.addEventListener('message', function (e) {
boxoList.equipmentName +
' 发生时刻:' +
boxoList.startTime +
' 残余电压' +
' 暂降(骤升)幅值' +
boxoList.evtParamVVaDepth +
' 持续时间:' +
boxoList.evtParamTm +
@@ -153,7 +153,7 @@ self.addEventListener('message', function (e) {
boxoList.lineName +
' 发生时刻:' +
boxoList.startTime +
' 残余电压' +
' 暂降(骤升)幅值' +
(boxoList.featureAmplitude * 100).toFixed(2) +
'% 持续时间:' +
boxoList.persistTime +
@@ -166,7 +166,7 @@ self.addEventListener('message', function (e) {
boxoList.lineName +
' 发生时刻:' +
boxoList.startTime +
' 残余电压' +
' 暂降(骤升)幅值' +
(boxoList.featureAmplitude * 100).toFixed(2) +
'% 持续时间:' +
boxoList.duration +

View File

@@ -88,7 +88,7 @@ const myChartess5 = ref<echarts.ECharts | null>(null)
const vh = computed(() => {
if (props.parentHeight == 999) {
return '310px'
return `calc((60vh - 150px) / 2 )`
} else if (props.parentHeight != 0) {
return mainHeight(props.parentHeight, 2).height
}
@@ -334,7 +334,7 @@ const initWave = (
$(`#${waveId}`).css('height', picHeight).css('width', vw.value)
}
} else {
titleText = `变电站名称:${subName.value} 监测点名称:${lineName.value} 发生时刻:${time} 残余电压${(
titleText = `变电站名称:${subName.value} 监测点名称:${lineName.value} 发生时刻:${time} 暂降(骤升)幅值${(
Number(eventValue.value) * 1
).toFixed(0)}% 持续时间:${persistTime.value}s`
}