From 7cadd28ab9e5a3810c74cb6989828724d3d65802 Mon Sep 17 00:00:00 2001 From: wangyufei <2267742828@qq.com> Date: Tue, 9 Jul 2024 10:19:36 +0800 Subject: [PATCH] =?UTF-8?q?=E9=95=BF=E6=98=A5=E6=B5=B7=E6=8B=89=E6=AD=A3?= =?UTF-8?q?=E5=BC=8F=E7=8E=AF=E5=A2=83WMS=E5=B7=A5=E5=BA=8F=E6=8A=A5?= =?UTF-8?q?=E4=BA=A7=E7=94=B3=E8=AF=B7=E5=A4=84=E7=90=86=E5=A4=B1=E8=B4=A5?= =?UTF-8?q?=E4=B8=8D=E5=BA=94=E8=AF=A5=E4=B8=80=E7=9B=B4loading?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../processproductionRequest/index.vue | 24 ++++++++++++++----- 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/src/views/wms/productionManage/processproduction/processproductionRequest/index.vue b/src/views/wms/productionManage/processproduction/processproductionRequest/index.vue index fe2a491bb..3a9c0ca6a 100644 --- a/src/views/wms/productionManage/processproduction/processproductionRequest/index.vue +++ b/src/views/wms/productionManage/processproduction/processproductionRequest/index.vue @@ -226,7 +226,9 @@ const handleClose = async (id: number) => { message.success(t('common.closeSuccess')) tableObject.loading = false await getList() - } catch {} + } catch { + tableObject.loading = false + } } /** 重新添加按钮操作 */ @@ -238,7 +240,9 @@ const handleReAdd = async (id: number) => { message.success(t('common.reAddSuccess')) tableObject.loading = false await getList() - } catch {} + } catch { + tableObject.loading = false + } } /** 提交按钮操作 */ @@ -250,7 +254,9 @@ const handleSubmit = async (id: number) => { message.success(t('common.submitSuccess')) tableObject.loading = false await getList() - } catch {} + } catch { + tableObject.loading = false + } } /** 审批驳回按钮操作 */ @@ -262,7 +268,9 @@ const handleRefused = async (id: number) => { message.success(t('common.refusedSuccess')) tableObject.loading = false await getList() - } catch {} + } catch { + tableObject.loading = false + } } /** 审批通过按钮操作 */ @@ -274,7 +282,9 @@ const handleAgree = async (id: number) => { message.success(t('common.agreeSuccess')) tableObject.loading = false await getList() - } catch {} + } catch { + tableObject.loading = false + } } /** 处理按钮操作 */ @@ -286,7 +296,9 @@ const handleHandle = async (id: number) => { message.success(t('common.handleSuccess')) tableObject.loading = false await getList() - } catch {} + } catch { + tableObject.loading = false + } } /** 添加/修改操作 */