From 46a177111a14de992ccb8fb9ba74dd14ad4e2eec Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期二, 15 十月 2024 01:55:25 +0800 Subject: [PATCH] 动态列自动刷新+点位在线增加未知状态 --- src/views/system/check/result/detail/index.vue | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/system/check/result/detail/index.vue b/src/views/system/check/result/detail/index.vue index e078471..3456ba0 100644 --- a/src/views/system/check/result/detail/index.vue +++ b/src/views/system/check/result/detail/index.vue @@ -155,12 +155,12 @@ this.date = year + '-' + month; this.queryParams.date = this.date; let examineTag = this.$route.query.examineTag; - if (examineTag === '2') { - examineTag = '0' - } - if (examineTag === '3') { + if (examineTag === '2' || examineTag === '3') { examineTag = '1' } + if (examineTag === '4' || examineTag === '5') { + examineTag = '2' + } this.queryParams.examineTag = examineTag; this.queryParamsList.examineTag = examineTag; this.activeIndex = examineTag; -- Gitblit v1.8.0