From a6751424a5ce3367149a87323bd88d299506b750 Mon Sep 17 00:00:00 2001 From: TsMask <340112800@qq.com> Date: Sat, 9 Mar 2024 18:15:47 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=BD=91=E5=85=83=E5=BF=AB=E9=80=9F?= =?UTF-8?q?=E5=AE=89=E8=A3=85=E9=A1=B5=E9=9D=A2=E5=8F=98=E9=87=8F=E7=BC=BA?= =?UTF-8?q?=E5=A4=B1=E5=AF=BC=E8=87=B4=E7=BC=96=E8=AF=91=E5=87=BA=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/tool/neQuickSetup/components/StepInstall.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/tool/neQuickSetup/components/StepInstall.vue b/src/views/tool/neQuickSetup/components/StepInstall.vue index 7464336c..879dcd78 100644 --- a/src/views/tool/neQuickSetup/components/StepInstall.vue +++ b/src/views/tool/neQuickSetup/components/StepInstall.vue @@ -137,8 +137,8 @@ const installStateFrom = Form.useForm( * 对话框弹出测试连接 */ function fnModalTest(row: Record) { - if (checkState.confirmLoading) return; - checkState.confirmLoading = true; + if (installState.confirmLoading) return; + installState.confirmLoading = true; const hide = message.loading(t('common.loading'), 0); testNeHost(row) .then(res => { @@ -156,7 +156,7 @@ function fnModalTest(row: Record) { }) .finally(() => { hide(); - checkState.confirmLoading = false; + installState.confirmLoading = false; }); }