This commit is contained in:
shijingjing
2022-05-07 10:21:36 +08:00
parent 0f78222776
commit c96098ca3b
2 changed files with 4 additions and 6 deletions

View File

@@ -94,7 +94,7 @@
</div>
<div class="fixedBtn">
<div class="status00" v-if="data.eventStatus == 0">
<div class="status00" v-if="data.eventStatus == 0 && isMine == 0">
<div class="columns border-r" @click="toContent(4)">
<span class="hint">转交事件</span>
</div>
@@ -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 = '矛盾调解'

View File

@@ -74,7 +74,7 @@ export default {
},
goDetail(item) {
uni.navigateTo({ url: `./detail?id=${item.id}` })
uni.navigateTo({ url: `./detail?id=${item.id}&isMine=1` })
},
},
}