@@ -124,7 +124,7 @@ const activeIndex = ref(0)
const activeTotalNum = computed(() => {
let count = 4; // 基础步骤数:设备通讯校验、模型一致性校验、相序校验、最终状态
if (props.onlyWave) {
- count++; // 添加实时数据对齐验证步骤
+ count++; // 添加数据对齐验证步骤
}
return count;
});
@@ -149,7 +149,7 @@ const detectionOptions = ref([
},
{
id: 2,
- name: "实时数据对齐验证",
+ name: "数据对齐验证",
selected: true,
},
{
@@ -354,7 +354,7 @@ watch(webMsgSend, function (newValue, oldValue) {
if(newValue.code == 10550){
step3InitLog.value.push({
type: 'error',
- log: '实时数据对齐时,设备连接异常!',
+ log: '数据对齐时,设备连接异常!',
});
step3.value = 'error'
ts.value = 'error'
@@ -592,7 +592,7 @@ function initializeParameters() {
},
]
- // 清空实时数据对齐验证的数据
+ // 清空数据对齐验证的数据
testDataStructure.value = {}
isShowDialog.value = false
diff --git a/frontend/src/views/home/components/table.vue b/frontend/src/views/home/components/table.vue
index 1f6290b..34d3b20 100644
--- a/frontend/src/views/home/components/table.vue
+++ b/frontend/src/views/home/components/table.vue
@@ -127,7 +127,7 @@