BUG 26001

This commit is contained in:
aixianling
2021-12-24 17:35:03 +08:00
parent b88c1d7a0e
commit bad694e75f

View File

@@ -176,11 +176,12 @@ export default {
}, },
submit() { submit() {
this.$http.post(`app/appcommunityhouseinfo/update`, this.houseInfo).then(res => { this.$http.post(`app/appcommunityhouseinfo/update`, this.houseInfo).then(res => {
if (res.code == 0) { if (res?.code == 0) {
uni.navigateBack({
success: () => {
this.$u.toast('提交成功') this.$u.toast('提交成功')
setTimeout(() => { }
uni.navigateBack({}) })
}, 600)
} }
}) })
}, },