From 757184c4593faa52c25fad8bb65b8ee00a554a81 Mon Sep 17 00:00:00 2001
From: zhaojisen <1301338853@qq.com>
Date: Wed, 12 Jun 2024 18:38:53 +0800
Subject: [PATCH] fix: Fixed the issue that the region was displayed
incorrectly when updating the cloud platform account
---
.../Cloud/Account/components/AccountPanel.vue | 22 +++++++++++++++++--
.../Cloud/Account/components/AuthPanel.vue | 17 ++++++++++----
.../Cloud/Account/components/RegionPanel.vue | 21 +++++++++++-------
3 files changed, 46 insertions(+), 14 deletions(-)
diff --git a/src/views/assets/Cloud/Account/components/AccountPanel.vue b/src/views/assets/Cloud/Account/components/AccountPanel.vue
index d608c69e0..1b6eaebd1 100644
--- a/src/views/assets/Cloud/Account/components/AccountPanel.vue
+++ b/src/views/assets/Cloud/Account/components/AccountPanel.vue
@@ -19,10 +19,10 @@
-
+
-
+
@@ -31,6 +31,7 @@
@@ -112,6 +114,22 @@ export default {
return ACCOUNT_PROVIDER_ATTRS_MAP[`${this.object.provider.value}`].image
}
},
+ watch: {
+ onlineSyncVisible: {
+ handler(newValue) {
+ if (newValue === false) {
+ this.$emit('refresh')
+ }
+ }
+ },
+ updateVisible: {
+ handler(newValue) {
+ if (newValue === false) {
+ this.$emit('refresh')
+ }
+ }
+ }
+ },
methods: {
toSafeLocalDateStr,
handleDelete() {
diff --git a/src/views/assets/Cloud/Account/components/AuthPanel.vue b/src/views/assets/Cloud/Account/components/AuthPanel.vue
index 049b52e62..4f5733d20 100644
--- a/src/views/assets/Cloud/Account/components/AuthPanel.vue
+++ b/src/views/assets/Cloud/Account/components/AuthPanel.vue
@@ -29,6 +29,10 @@ export default {
object: {
type: Object,
default: () => {}
+ },
+ origin: {
+ type: String,
+ default: ''
}
},
data() {
@@ -106,12 +110,12 @@ export default {
el: {
provider: this.provider,
regions: this.object.task?.regions || [],
- getAuthInfo: async() => {
+ getAuthInfo: () => {
if (this.object?.id) {
return this.object.id
}
const form = this.$refs.form.$refs.form.dataForm
- await form.submitForm('form', true)
+ form.$refs.form.validate()
return form.getFormValue()['attrs']
}
}
@@ -161,8 +165,6 @@ export default {
}
}
},
- mounted() {
- },
methods: {
submitForm(form, btn, submitType) {
form.validate((valid) => {
@@ -171,6 +173,13 @@ export default {
}
})
this.$refs.form.$refs.form.dataForm.submitForm('form', false)
+
+ if (this.origin === 'update') {
+ setTimeout(() => {
+ this.$emit('refresh')
+ this.$emit('update:visible', false)
+ }, 500)
+ }
this.submitType = submitType
},
handleSubmitSuccess(res) {
diff --git a/src/views/assets/Cloud/Account/components/RegionPanel.vue b/src/views/assets/Cloud/Account/components/RegionPanel.vue
index 1e081eead..18579628d 100644
--- a/src/views/assets/Cloud/Account/components/RegionPanel.vue
+++ b/src/views/assets/Cloud/Account/components/RegionPanel.vue
@@ -8,6 +8,7 @@
{{ content }}