From ed2c6b6cc51e815ea8f4f260dd9a2a1ae8421c16 Mon Sep 17 00:00:00 2001 From: songguoqiang <yiran_zhao6@163.com> Date: Thu, 27 Feb 2025 08:40:14 +0800 Subject: [PATCH] =?UTF-8?q?YT-1986=EF=BC=9A=E3=80=8A=E5=A4=96=E9=83=A8?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E8=AE=B0=E5=BD=95=E3=80=8B=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E9=94=99=E8=AF=AF=E4=BF=A1=E6=81=AF=E7=9A=84=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/infra/outerApiHis/index.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/views/infra/outerApiHis/index.vue b/src/views/infra/outerApiHis/index.vue index 85317f561..f2588ba64 100644 --- a/src/views/infra/outerApiHis/index.vue +++ b/src/views/infra/outerApiHis/index.vue @@ -234,16 +234,20 @@ const searchFormClick = (searchData) => { //重试 const handleRetry = (row) => { + tableObject.loading = true; OuterApiHisApi.retry(row.id).then(res => { if(res){ message.success(t('common.retrySuccess')) }else{ message.success(t('common.retryFinish')) } + tableObject.loading = false; getList() }).catch(() => { + tableObject.loading = false; getList() }) + } /** 初始化 **/ onMounted(async () => {