This commit is contained in:
liuye
2022-11-30 17:54:32 +08:00

View File

@@ -67,15 +67,15 @@ export default {
} }
this.flag = true this.flag = true
this.$http.post(`/app/appintegralmemberapply/addOrUpdate`,{...this.form}).then(res=> { this.$http.post(`/app/appintegralmemberapply/addOrUpdate`,{...this.form}).then(res=> {
if(res.code == 0) { if(res.code == 0) {
this.flag = false
this.$u.toast('提交成功') this.$u.toast('提交成功')
setTimeout(() => { setTimeout(() => {
uni.navigateBack() uni.navigateBack()
}, 600) }, 400)
} }
}).catch(err=> {
this.$u.toast(err.message)
}) })
} }
} }