From 25f7063b3747e4b27589904e7832506f0da24de0 Mon Sep 17 00:00:00 2001 From: wenyann <64353056+wenyann@users.noreply.github.com> Date: Wed, 1 Jul 2020 14:38:59 +0800 Subject: [PATCH] smtp --- .../components/settings/system/SystemParameterSetting.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frontend/src/business/components/settings/system/SystemParameterSetting.vue b/frontend/src/business/components/settings/system/SystemParameterSetting.vue index cb35f98613..7fab04bb4b 100644 --- a/frontend/src/business/components/settings/system/SystemParameterSetting.vue +++ b/frontend/src/business/components/settings/system/SystemParameterSetting.vue @@ -115,6 +115,7 @@ activated() { this.query() + this.change() }, methods: { changeType() { @@ -161,6 +162,7 @@ }) }, edit() { + this.change() this.showEdit = false; this.showSave = true; this.showCancel = true; @@ -197,11 +199,13 @@ }) }, cancel() { + this.query(); this.showEdit = true; this.showCancel = false; this.showSave = false; this.show = true; - this.query(); + this.change() + } }