解决多台被检设备同时检测,通道混乱问题
This commit is contained in:
@@ -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 = () => {
|
||||
|
||||
Reference in New Issue
Block a user