This commit is contained in:
liuye
2022-03-04 15:29:30 +08:00
parent 9ba2d22288
commit eab4d0fda9

View File

@@ -168,8 +168,11 @@ export default {
this.$confirm('确认通过该审核?').then(() => {
this.$http.post(`/app/appresident/examine?id=${this.id}&pass=${pass}`).then((res) => {
if (res.code == 0) {
uni.navigateBack()
uni.$emit('updatePeople')
this.$u.toast('审核成功')
setTimeout(() => {
uni.navigateBack()
}, 600)
}
})
})