This commit is contained in:
liuye
2022-04-20 14:44:32 +08:00
parent e5f9c86fd3
commit 8f14a26b58
2 changed files with 6 additions and 2 deletions

View File

@@ -46,7 +46,7 @@ export default {
uni.$emit('reload') uni.$emit('reload')
setTimeout(() => { setTimeout(() => {
uni.navigateBack({ uni.navigateBack({
delta: 1 delta: 2
}) })
}, 600) }, 600)
} }

View File

@@ -64,8 +64,12 @@ export default {
this.$http.post(`/app/apppartyfourlinkage/auditById?id=${this.id}&status=1`).then((res) => { this.$http.post(`/app/apppartyfourlinkage/auditById?id=${this.id}&status=1`).then((res) => {
if (res.code == 0) { if (res.code == 0) {
this.$u.toast('审核成功') this.$u.toast('审核成功')
this.getDetail()
uni.$emit('reload') uni.$emit('reload')
setTimeout(() => {
uni.navigateBack({
delta: 1
})
}, 600)
} }
}) })
}) })