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' +}