树控件样式微调

This commit is contained in:
GYYM
2024-11-15 09:34:43 +08:00
parent 815d34f817
commit 563285eb77
4 changed files with 35 additions and 13 deletions

View File

@@ -443,8 +443,17 @@ const refreshProgress = () => {
if(testModel.value === "preTest")
ElMessage.success("预检测过程全部结束")
else if(testModel.value === "Test")
ElMessage.success("正式检测全部结束,你可以停留在此页面查看检测结果,或返回首页进行复检、报告生成和归档等操作")
//ElMessage.success("正式检测全部结束,你可以停留在此页面查看检测结果,或返回首页进行复检、报告生成和归档等操作")
ElMessageBox.confirm(
'检测全部结束,你可以停留在此页面查看检测结果,或返回首页进行复检、报告生成和归档等操作',
'检测完成',
{
confirmButtonText: 'OK',
cancelButtonText: 'Cancel',
type: 'success',
}
)
.then()
// percentage.value = 0;
// statusList.value = [];
// deviceTestList.value = [];
@@ -510,6 +519,7 @@ const interValTest = () => {
});
// console.log(deviceTestList.value,11111);
currentIndex++;
treeRef.value && treeRef.value.getCurrentIndex(currentIndex)
refreshProgress();
}, 2000);