From 85de15d11e28b754857fa5b33af779b42715598b Mon Sep 17 00:00:00 2001 From: guoapeng Date: Thu, 29 May 2025 23:08:33 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=88=9D=E5=A7=8B=E5=8C=96=E5=BF=BD?= =?UTF-8?q?=E7=95=A5=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/check/index.vue | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/src/components/check/index.vue b/src/components/check/index.vue index a5c75c5..30fc21a 100644 --- a/src/components/check/index.vue +++ b/src/components/check/index.vue @@ -162,6 +162,14 @@ const ignore = async (item: any) => { }) item.status = 'ignore' } + +const ignoreFalse = async (item: any) => { + await setIgnoreItem({ + ignoreSelfTestType: item.ignoreKey, + ignore: false, + }) + item.status = 'error' +}