更新
This commit is contained in:
parent
63f5226c01
commit
886e9f356d
@ -68,7 +68,6 @@ export default {
|
|||||||
methods: {
|
methods: {
|
||||||
submitForm() {
|
submitForm() {
|
||||||
this.$refs.formRef.validate().then(res => {
|
this.$refs.formRef.validate().then(res => {
|
||||||
uni.showToast({title: 'Successfully', icon: 'success'});
|
|
||||||
request({
|
request({
|
||||||
url: 'contact/sendEmail',
|
url: 'contact/sendEmail',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
@ -77,6 +76,8 @@ export default {
|
|||||||
email: this.form.email,
|
email: this.form.email,
|
||||||
message: this.form.message
|
message: this.form.message
|
||||||
}
|
}
|
||||||
|
}).then(() => {
|
||||||
|
uni.showToast({title: 'Successfully', icon: 'success'});
|
||||||
})
|
})
|
||||||
this.form = {name: '', email: '', message: ''};
|
this.form = {name: '', email: '', message: ''};
|
||||||
}).catch(errors => {
|
}).catch(errors => {
|
||||||
|
Loading…
Reference in New Issue
Block a user