diff --git a/project/fengdu/AppBIBoard/AppBIBoard.vue b/project/fengdu/AppBIBoard/AppBIBoard.vue index 08b1a5a7..0102f038 100644 --- a/project/fengdu/AppBIBoard/AppBIBoard.vue +++ b/project/fengdu/AppBIBoard/AppBIBoard.vue @@ -340,7 +340,14 @@ export default { resident: { header: ['群名称', '群主', '群人数'], align: ['left', 'left', 'right'], + columnWidth: [250], data: v.detail.groupList?.map(e => [e.name, e.ownerName, e.memberCount]) + }, + volunteer: { + header: ['互助会名称', '会长', '会员数'], + align: ['left', 'left', 'right'], + columnWidth: [250], + data: v.detail.volunteers?.map(e => [e.name, e.ownerName, e.memberCount]) } }[v.areaStaType] }) @@ -511,11 +518,11 @@ export default { this.instance.post("/app/fdDiy/mapAreaInfo", null, {params: {areaId: area.unique_id.padEnd(12, '0')}}).then(res => { if (res?.data) { this.dialog = true - const {村社区数量, 居民群数量, 居民数, 网格数, 群成员数量, 户数} = res.data + const {村社区数量, 居民群数量, 居民数, 网格数, 群成员数量, 户数, 互助会 = 0, 会员数量 = 0} = res.data this.detail = { eventType: area.name, mapType: 'area', ...res.data, - sta: {村社区数量, 居民群数量, 居民数, 网格数, 群成员数量, 户数} + sta: {村社区数量, 居民群数量, 居民数, 网格数, 群成员数量, 户数, 互助会, 会员数量} } } })