去除日志,表格宽度

This commit is contained in:
sjl
2025-10-15 08:49:11 +08:00
parent b0ca84c8fd
commit 35f21b7140
38 changed files with 135 additions and 148 deletions

View File

@@ -303,7 +303,7 @@ let count = 0
// 监听WebSocket消息变化处理各种检测状态和错误
watch(webMsgSend, function(newValue, oldValue) {
console.log('webMsgSend', newValue)
// 只在非等待状态下处理消息
if (testStatus.value !== 'waiting') {
// 步骤4正式检测阶段的消息处理
@@ -637,7 +637,7 @@ watch(webMsgSend, function(newValue, oldValue) {
break
// 检测结束
case 'Quit':
console.log('检测结束')
break
}
}
@@ -1113,7 +1113,7 @@ const pauseSuccessCallback = () => {
log: `${new Date().toLocaleString()}:暂停检测`,
})
stopTimeCount()
console.log('暂停中')
}
@@ -1123,7 +1123,7 @@ const handleResumeTest = () => {
startData.value = new Date()
testLogList.push({ type: 'info', log: `${new Date().toLocaleString()}:开始重新检测!` })
resumeTimeCount()
console.log('开始继续检测')
}
// ========== 测试项索引管理函数 ==========