This commit is contained in:
caozehui
2024-12-21 12:41:06 +08:00
parent 63c6693d04
commit 0a4385f29b
3 changed files with 21 additions and 20 deletions

View File

@@ -256,6 +256,7 @@ import { useDictStore } from '@/stores/modules/dict'
import ChannelsTest from './channelsTest.vue'
import { useModeStore } from '@/stores/modules/mode'; // 引入模式 store
import {useCheckStore} from '@/stores/modules/check'
import {CheckData} from '@/api/check/interface'
const dictStore = useDictStore()
const checkStore = useCheckStore()
@@ -558,7 +559,7 @@ const handleSelectionChange = (selection: any[]) => {
{
testType= "reTest";
}
let devices: Check.Device[] = selection.map((item: any) => {
let devices: CheckData.Device[] = selection.map((item: any) => {
return {
deviceId: item.id,
deviceName: item.name,