This commit is contained in:
liuye
2024-03-04 11:38:17 +08:00
parent 32500deaee
commit 1a1ed43bd3

View File

@@ -5,7 +5,7 @@
<template #rightBtn> <template #rightBtn>
<div class="title-btns"> <div class="title-btns">
<el-button type="primary" icon="iconfont iconPerson_Transfered" @click="isShowForward = true" v-if="detail.rightType == 2 || detail.rightType == 3">指派事件</el-button> <el-button type="primary" icon="iconfont iconPerson_Transfered" @click="isShowForward = true" v-if="detail.rightType == 2 || detail.rightType == 3">指派事件</el-button>
<el-button type="primary" icon="iconfont iconRegister" @click="handelClick" v-if="detail.rightType < 4 && detail.rightType != null">处理事件</el-button> <el-button type="primary" icon="iconfont iconRegister" @click="handelClick" v-if="detail.rightType < 3 && detail.rightType != null">处理事件</el-button>
<!-- <el-button type="primary" icon="iconfont iconRegister" @click="isShowTalk = true" v-if="detail.eventStatus < 2">事件研判</el-button> <!-- <el-button type="primary" icon="iconfont iconRegister" @click="isShowTalk = true" v-if="detail.eventStatus < 2">事件研判</el-button>
<el-button type="primary" icon="iconfont iconRegister" @click="isShowMediate = true" v-if="detail.eventStatus < 2">矛盾调解</el-button> --> <el-button type="primary" icon="iconfont iconRegister" @click="isShowMediate = true" v-if="detail.eventStatus < 2">矛盾调解</el-button> -->
</div> </div>
@@ -373,7 +373,7 @@ export default {
getGirdList() { getGirdList() {
return this.instance.post(`/app/appclapeventinfoqujing/listGirdInfoByTransfer?id=${this.$route.query.id}`).then(res => { return this.instance.post(`/app/appclapeventinfoqujing/listGirdInfoByTransfer?id=${this.$route.query.id}`).then(res => {
if (res?.data) { if (res?.data) {
return this.tree = this.formatList([res.data]) return this.tree = this.formatList(res.data)
} }
}) })
}, },
@@ -429,8 +429,9 @@ export default {
}, },
formatList(list) { formatList(list) {
console.log(list)
for (let item of list) { for (let item of list) {
item.children = [item.girdList, item.girdMemberList?.map(e => ({ item.children = [item.girdList? item.girdList: [], item.girdMemberList?.map(e => ({
...e, isUser: true, girdName: item.girdName, ...e, isUser: true, girdName: item.girdName,
girdId: item.id girdId: item.id
})) || []].flat() })) || []].flat()
@@ -438,6 +439,7 @@ export default {
this.formatList(item.girdList) this.formatList(item.girdList)
} }
} }
console.log(list)
return list return list
}, },