事件上报

This commit is contained in:
liuye
2023-05-11 14:23:29 +08:00
parent 2722a73e18
commit f4555eaeae
5 changed files with 168 additions and 13 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 || data.eventStatus == 1">
<div class="columns border-r" @click="toContent(1)">
<img src="./components/img/zhuanjiao.png" alt="" />
<span class="hint">转交事件</span>
@@ -142,7 +142,7 @@ export default {
const list = this.data.processList.map(e => ({
...e,
avatar: getAvatar(e.girdMemberName),
statusLabel: this.$dict.getLabel('clapDoStatus', e.doStatus)
statusLabel: this.$dict.getLabel('residentReportDoStatus', e.doStatus)
}))
if (this.evaluation.id) {
const {id, createUserName, score, createTime: doTime, content: doExplain} = this.evaluation
@@ -159,7 +159,7 @@ export default {
watch: {},
onLoad(o) {
this.id = o.id
this.$dict.load('realityStatus', 'clapDoStatus', 'residentEventSource').then(() => {
this.$dict.load('clapEventStatus','residentEventSource', 'residentReportDoStatus').then(() => {
this.getDetail()
})