同步现场代码 修改电网一张图页面

This commit is contained in:
GGJ
2024-05-29 13:39:46 +08:00
parent f6f015cf4b
commit 3d0bd8f644
11 changed files with 226 additions and 166 deletions

View File

@@ -147,8 +147,8 @@
<div class="ml22" style="font-size: 12px">
<span>
幅值低于90%:
<span class="num">{{ transientNum[0] }}  </span>
幅值低于50%:
<span class="num">{{ transientNum[0] }}  </span>
幅值低于50%:
<span class="num">{{ transientNum[1] }}</span>
</span>
</div>
@@ -379,7 +379,7 @@ const transientChange = () => {
WTList.value = data
})
}
const format = (percentage: any) => Math.round(percentage * mun.value) / 100 + '条'
const format = (percentage: any) => (Math.round(percentage * mun.value) / 100).toFixed(0) + '条'
defineExpose({ info, show })
</script>
@@ -459,9 +459,11 @@ defineExpose({ info, show })
.harmonic {
display: grid;
overflow-y: auto;
.progress {
display: flex;
align-items: center;
.text {
width: 50px;
font-size: 12px;