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>
<div class="fixedBtn"> <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)"> <div class="columns border-r" @click="toContent(4)">
<span class="hint">转交事件</span> <span class="hint">转交事件</span>
</div> </div>
@@ -120,6 +120,7 @@ export default {
id: '', id: '',
doItShow: false, doItShow: false,
showPage: false, showPage: false,
isMine: 0,
} }
}, },
computed: { computed: {
@@ -131,10 +132,7 @@ export default {
this.id = o.id this.id = o.id
this.getDetail() this.getDetail()
}) })
this.isMine = o.isMine
uni.$on('updateDeatil', () => {
this.getDetail()
})
}, },
onShow() { onShow() {
document.title = '矛盾调解' document.title = '矛盾调解'

View File

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