diff --git a/jero-web/src/views/projectManagement/components/ParameterItemCollectionList.vue b/jero-web/src/views/projectManagement/components/ParameterItemCollectionList.vue index 811313b5e..84f9605c4 100644 --- a/jero-web/src/views/projectManagement/components/ParameterItemCollectionList.vue +++ b/jero-web/src/views/projectManagement/components/ParameterItemCollectionList.vue @@ -1298,7 +1298,7 @@ this.$confirm({ content: _this.$t('ConfirmBatchDeletion'), onOk() { - this.textLoading = true + _this.textLoading = true axios({ url: '/jero-boot/params/collectManifest/deleteBatch', method: 'post', @@ -1321,14 +1321,14 @@ _this.selectedRowKeys = [] _this.$refs.CollectionTabel.getData() _this.$refs.CollectionTabel.getTableList() - this.textLoading = false + _this.textLoading = false } else { - this.textLoading = false + _this.textLoading = false _this.$message.warning(_this.$t('operationFailed')) } }) .catch((error) => { - this.textLoading = false + _this.textLoading = false }) } })