转交事件
@@ -120,6 +120,7 @@ export default {
id: '',
doItShow: false,
showPage: false,
+ isMine: 0,
}
},
computed: {
@@ -131,10 +132,7 @@ export default {
this.id = o.id
this.getDetail()
})
-
- uni.$on('updateDeatil', () => {
- this.getDetail()
- })
+ this.isMine = o.isMine
},
onShow() {
document.title = '矛盾调解'
diff --git a/src/saas/AppConflictMediation/myReply.vue b/src/saas/AppConflictMediation/myReply.vue
index 43a4210e..8a5ac051 100644
--- a/src/saas/AppConflictMediation/myReply.vue
+++ b/src/saas/AppConflictMediation/myReply.vue
@@ -74,7 +74,7 @@ export default {
},
goDetail(item) {
- uni.navigateTo({ url: `./detail?id=${item.id}` })
+ uni.navigateTo({ url: `./detail?id=${item.id}&isMine=1` })
},
},
}