正式检测录波数据查询

This commit is contained in:
sjl
2025-09-09 20:54:22 +08:00
parent 48aab7c1e9
commit 780a446aed
6 changed files with 253 additions and 209 deletions

View File

@@ -66,6 +66,9 @@
/>
</el-select>
</el-form-item>
<el-form-item label="录波指令" prop="waveCmd" v-if="modeStore.currentMode == '比对式'">
<el-input v-model='formContent.waveCmd' placeholder="请输入录波指令" maxlength="32" show-word-limit/>
</el-form-item>
</el-form>
</div>
<template #footer>
@@ -90,7 +93,9 @@
import { useDictStore } from '@/stores/modules/dict'
import {addDevType,updateDevType} from '@/api/device/devType'
import {getICDAllList} from '@/api/device/icd'
import { useModeStore } from '@/stores/modules/mode'
const dictStore = useDictStore()
const modeStore = useModeStore()
// 定义弹出组件元信息
const dialogFormRef = ref()
const scene = ref('')
@@ -108,6 +113,7 @@
devChns: 1, //设备通道数
reportName: '',//报告模版名称
state: 1,
waveCmd: 'RDRE1$CO$RcdTrg$Oper',
})
return { dialogVisible, titleType, formContent }
}
@@ -127,6 +133,7 @@ const resetFormContent = () => {
devChns: 1, //设备通道数
reportName: '',//报告模版名称
state: 1,
waveCmd: 'RDRE1$CO$RcdTrg$Oper',
}
}