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 => {