三项不平衡原始数据表头修改

This commit is contained in:
caozehui
2025-01-22 14:03:50 +08:00
parent f22b4e7fb8
commit 68aa4c409b
2 changed files with 16 additions and 47 deletions

View File

@@ -6,14 +6,17 @@
style="width: 100%;">
<el-table-column type="index" label="序号" width="70" fixed="left"/>
<el-table-column prop="time" label="数据时间"/>
<template v-if="phaseT === 0">
<template v-if="!isThreePhase && phaseT === 0">
<el-table-column prop="dataA" :label="'A相'+(unit==''?'':''+unit+'')"/>
<el-table-column prop="dataB" :label="'B相'+(unit==''?'':''+unit+'')"/>
<el-table-column prop="dataC" :label="'C相'+(unit==''?'':''+unit+'')"/>
</template>
<template v-if="phaseT === 1">
<template v-if="!isThreePhase && phaseT === 1">
<el-table-column prop="dataT" :label="tableHeader+(unit==''?'':''+unit+'')"/>
</template>
<template v-if="isThreePhase">
<el-table-column prop="dataB" :label="'负序不平衡度'+(unit==''?'':''+unit+'')"/>
</template>
</el-table>
</div>
@@ -46,6 +49,10 @@ const tableHeader = computed(() => {
return currentScriptTypeName
})
const isThreePhase = computed(() => {
return currentScriptTypeName.includes('三相电压不平衡度') || currentScriptTypeName.includes('三相电流不平衡度')
})
const exportData = () => {
emit('exportRawDataHandler')
}