This commit is contained in:
sjl
2025-09-04 14:38:27 +08:00
parent 7ce5119aa1
commit a8ec91482a
7 changed files with 30 additions and 15 deletions

View File

@@ -224,7 +224,7 @@ const column: any = ref([
field: 'inpactloadhighScale'
},
{
title: '有无隔离变',
title: '是否隔离变',
field: 'isIsolationtrans'
},
{
@@ -398,7 +398,6 @@ watch(() => props.nodeId, async (newId) => {
// 处理冲击负荷类型名称
form.value.impact = form.value.impact.map((impactItem: any) => {
const found = loadRes.data.find((item: any) => item.inpactloadtypeId == impactItem.inpactloadtypeId)
if (found) {
return {
...impactItem,
@@ -417,7 +416,8 @@ watch(() => props.nodeId, async (newId) => {
return {
...loadItem,
inpactloadhighScale: HeightVoltage?.name || loadItem.inpactloadhighScale,
inpactloadlowScale: LowVoltage?.name || loadItem.inpactloadlowScale
inpactloadlowScale: LowVoltage?.name || loadItem.inpactloadlowScale,
isIsolationtrans: loadItem.isIsolationtrans === '01' ? '是' : '否',
}
})