This commit is contained in:
caozehui
2025-03-06 15:50:45 +08:00
parent 2377916f29
commit d41707fcf9
5 changed files with 44 additions and 16 deletions

View File

@@ -225,11 +225,6 @@
<dataCheckPopup ref='dataCheckPopupRef'/>
<dataCheckChangeErrSysPopup
:visible='dataCheckChangeErrSysDialogVisible'
@update:visible='dataCheckChangeErrSysDialogVisible = $event'
></dataCheckChangeErrSysPopup>
<matchPopup
:visible='matchDialogVisible'
@update:visible='matchDialogVisible = $event'
@@ -305,7 +300,6 @@ const reportDialogVisible = ref(false)
const dataCheckPopupRef = ref<InstanceType<typeof dataCheckPopup>>()
const selectTestItemPopupRef = ref<InstanceType<typeof SelectTestItemPopup>>()
const dataCheckChangeErrSysDialogVisible = ref(false)
const matchDialogVisible = ref(false)
const dialogTitle = ref('手动检测')
const checkStateTable = ref<number[]>([0, 1, 2])
@@ -1082,10 +1076,12 @@ const openDrawer = async (title: string, row: any) => {
}
if (title === '检测数据查询') {
checkStore.setShowDetailType(0)
dataCheckPopupRef.value?.open(row.id, '-1', null)
}
if (title === '误差体系更换') {
dataCheckChangeErrSysDialogVisible.value = true
checkStore.setShowDetailType(1)
dataCheckPopupRef.value?.open(row.id, '-1', null)
}