同步现场代码 修改电网一张图页面
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user