From 087fade7ab229b07349cae5fb11099e7e42219b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8C=83=E5=BC=BA=E5=BC=BA?= <787203167> Date: Tue, 16 May 2023 10:42:41 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B3=95=E8=A7=84=E6=B8=85?= =?UTF-8?q?=E5=8D=95=E6=B5=81=E7=A8=8B=E9=87=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../views/projectManagement/components/listOfRegulations.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/jero-web/src/views/projectManagement/components/listOfRegulations.vue b/jero-web/src/views/projectManagement/components/listOfRegulations.vue index fe17baa7c..84517ab40 100644 --- a/jero-web/src/views/projectManagement/components/listOfRegulations.vue +++ b/jero-web/src/views/projectManagement/components/listOfRegulations.vue @@ -2246,6 +2246,7 @@ this.$refs.ruleFormReset.validate(valid => { if (valid) { let _this = this + _this.confirmLoadingReset = true let idList = JSON.parse(JSON.stringify(_this.selectedRowKeys)) postAction('/project/projectLawsInventoryEO/change', { ids: idList.join(','), @@ -2254,11 +2255,13 @@ }).then((res) => { if (res.success) { _this.$message.success(_this.$t('OperationSuccessful')) + _this.confirmLoadingReset = false _this.selectedRowKeys = [] _this.pageNo = 1 _this.getList() } else { _this.$message.warning(_this.$t('operationFailed')) + _this.confirmLoadingReset = false } }) }