From 886e9f356da77b92213a1f086d54866dc5d96458 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=AE=B8=E5=85=81=E6=9E=9E?= <3422692813@qq.com> Date: Fri, 14 Mar 2025 11:27:42 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dc-App/pages/my/Contact.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dc-App/pages/my/Contact.vue b/dc-App/pages/my/Contact.vue index 825f990..4fd6e2b 100644 --- a/dc-App/pages/my/Contact.vue +++ b/dc-App/pages/my/Contact.vue @@ -68,7 +68,6 @@ export default { methods: { submitForm() { this.$refs.formRef.validate().then(res => { - uni.showToast({title: 'Successfully', icon: 'success'}); request({ url: 'contact/sendEmail', method: 'post', @@ -77,6 +76,8 @@ export default { email: this.form.email, message: this.form.message } + }).then(() => { + uni.showToast({title: 'Successfully', icon: 'success'}); }) this.form = {name: '', email: '', message: ''}; }).catch(errors => {