This commit is contained in:
liuye
2022-01-07 13:58:07 +08:00
parent 519c9139ab
commit 07bf7fd304
4 changed files with 203 additions and 239 deletions

View File

@@ -114,7 +114,7 @@
<div class="doIt" @click="doItShow = true">我来受理</div>
</div>
<div class="endDoIt" v-if="data.eventStatus == 1" @click="toContent(3)">我已办结</div>
<div class="endDoIt" v-if="data.eventStatus == 1" @click="toContent(3)">前往办理</div>
</div>
<u-modal v-model="doItShow" :mask-close-able="true" z-index="99" content="确定受理该事件?" :show-cancel-button="true" @confirm="doThings"></u-modal>
@@ -141,7 +141,7 @@ export default {
this.getDetail()
})
uni.$on('nextList', () => {
uni.$on('updateDeatil', () => {
this.getDetail()
})
},
@@ -162,7 +162,6 @@ export default {
doThings() {
this.$http.post(`/app/appclapeventinfo/acceptance?id=${this.id}`).then((res) => {
if (res.code == 0) {
this.$u.toast('受理成功!')
this.getDetail()
}
})