From 5f1bad3da2ef856d23fff6a9017121a519ae0575 Mon Sep 17 00:00:00 2001 From: guoapeng Date: Wed, 26 Feb 2025 15:15:42 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E8=8E=B7=E5=8F=96=E6=AD=A3=E5=9C=A8?= =?UTF-8?q?=E8=BF=9B=E8=A1=8C=E4=B8=AD=E7=9A=84=E5=AE=9E=E9=AA=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/graphite/index.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/views/graphite/index.vue b/src/views/graphite/index.vue index 68fb5d0..c11af2d 100644 --- a/src/views/graphite/index.vue +++ b/src/views/graphite/index.vue @@ -181,6 +181,10 @@ onMounted(() => { } }); wsClient.connect(); + getIngTask().then((res:any) => { + if(!res.success) return; + taskId.value = res.data.id; + }); onUnmounted(() => { subscription.unsubscribe(); });