事件上报

This commit is contained in:
liuye
2024-03-01 14:06:55 +08:00
parent 4442b2c578
commit 68d4f8ac1b

View File

@@ -50,6 +50,16 @@
</ai-wrapper>
</template>
</ai-card>
<ai-card title="处理详情" v-if="result.doExplain">
<template #content>
<ai-wrapper>
<ai-info-item label="处理结果" :value="result.doExplain"></ai-info-item>
<ai-info-item label="照片" isLine>
<ai-uploader :instance="instance" disabled v-model="result.files"></ai-uploader>
</ai-info-item>
</ai-wrapper>
</template>
</ai-card>
<ai-card title="调解信息" v-if="detail.mediateAreaName">
<template #content>
<ai-wrapper>
@@ -314,7 +324,8 @@ export default {
mediateAmount: '',
mediateMember: '',
mediateInfo: ''
}
},
result: {}
}
},
@@ -346,6 +357,9 @@ export default {
if(this.detail.judgeRisk) {
this.detail.judgeRiskList = this.detail.judgeRisk.split(',')
}
if (['3', '4'].includes(res.data.eventStatus) && res.data.groupName != '矛盾调解') {
this.result = res.data.processList[0]
}
this.$nextTick(() => {
this.initMap()
})