From a1b453f82d962cef294d44fd08fabebe6b792c38 Mon Sep 17 00:00:00 2001
From: qq787203167 <787203167@qq.com>
Date: Sat, 2 Jul 2022 14:23:57 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=A6=85=E9=81=93=E5=B7=B2?=
=?UTF-8?q?=E7=9F=A5bug?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../src/components/CollectionType/index.vue | 28 ++++++++++++++-----
.../ParameterItemCollectionList.vue | 7 ++++-
2 files changed, 27 insertions(+), 8 deletions(-)
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
}
}
})