diff --git a/frontend/src/business/components/settings/system/SystemParameterSetting.vue b/frontend/src/business/components/settings/system/SystemParameterSetting.vue index 743c34f540..af0dbd1540 100644 --- a/frontend/src/business/components/settings/system/SystemParameterSetting.vue +++ b/frontend/src/business/components/settings/system/SystemParameterSetting.vue @@ -80,9 +80,6 @@ password: '2345678',*/ }, result: {}, - /*SSL: [], - TLS: [], - SMTP: [],*/ showEdit: true, showSave: false, showCancel: false, @@ -123,9 +120,9 @@ this.$set(this.formInline, "port", response.data[1].paramValue); this.$set(this.formInline, "account", response.data[2].paramValue); this.$set(this.formInline, "password", response.data[3].paramValue); - this.$set(this.formInline, "SSL", response.data[4].paramValue); - this.$set(this.formInline, "TLS", response.data[5].paramValue); - this.$set(this.formInline, "SMTP", response.data[6].paramValue); + this.$set(this.formInline, "SSL", JSON.parse(response.data[4].paramValue)); + this.$set(this.formInline, "TLS", JSON.parse(response.data[5].paramValue)); + this.$set(this.formInline, "SMTP", JSON.parse(response.data[6].paramValue)); }) }, change() {