解决多台被检设备同时检测,通道混乱问题

This commit is contained in:
sjl
2025-11-26 15:06:50 +08:00
parent 4a309feac5
commit 64c05b629c
2 changed files with 29 additions and 5 deletions

View File

@@ -37,9 +37,9 @@
align="center"
>
<el-table-column
v-for="(chnItem, index2) in checkStore.chnNumList"
v-for="(chnItem, index2) in checkStore.chnNumList.filter(c => c.startsWith(item.deviceId))"
:key="`${item.deviceId}${chnItem}`"
:label="'通道' + chnItem"
:label="'通道' + chnItem.split('-')[1]"
align="center"
>
<template #default="{ row }">
@@ -804,6 +804,7 @@ const initCheckResult = (defaultValue: CheckData.ChnCheckResultEnum) => {
})
Object.assign(checkResult, result)
}
const scrollToBottom = () => {