diff --git a/jero-web/src/components/CollectionType/index.vue b/jero-web/src/components/CollectionType/index.vue
index b1667ab35..6e8313cf6 100644
--- a/jero-web/src/components/CollectionType/index.vue
+++ b/jero-web/src/components/CollectionType/index.vue
@@ -99,7 +99,9 @@
-
@@ -114,7 +116,9 @@
-
@@ -141,7 +145,9 @@
-
@@ -453,7 +461,9 @@
-
@@ -475,7 +485,9 @@
-
@@ -497,7 +509,9 @@
-
diff --git a/jero-web/src/views/projectManagement/components/ParameterItemCollectionList.vue b/jero-web/src/views/projectManagement/components/ParameterItemCollectionList.vue
index 2d1e8886f..e85d4ffaa 100644
--- a/jero-web/src/views/projectManagement/components/ParameterItemCollectionList.vue
+++ b/jero-web/src/views/projectManagement/components/ParameterItemCollectionList.vue
@@ -517,7 +517,7 @@
document.title = `${this.paramsManifest.title}-` + this.$t('ParameteItemCollectionList')
},
beforeDestroy() {
- clearInterval(this.time);
+ clearInterval(this.time)
},
methods: {
...mapGetters(['userInfo']),
@@ -1050,14 +1050,19 @@
}
let configDataList = { configDataList: postDate }
if (selectedRowKeysValue && selectedRowKeysValue.length > 0) {
+ if (num && num == 1) {
+ this.textLoading = true
+ }
postAction('/params/collectManifest/save', configDataList).then((res) => {
if (res.success) {
if (num && num == 1) {
_this.$message.success(_this.$t('OperationSuccessful'))
+ this.textLoading = false
}
} else {
if (num && num == 1) {
_this.$message.warning(_this.$t('operationFailed'))
+ this.textLoading = false
}
}
})