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 } }) }