BUG 26286

This commit is contained in:
aixianling
2021-12-31 15:48:31 +08:00
parent 357ffcb793
commit 97c9b83a3d
2 changed files with 5 additions and 13 deletions

View File

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