From cd33176a79a7c759383c2d8902030c356dba421c Mon Sep 17 00:00:00 2001 From: aixianling Date: Tue, 24 Oct 2023 14:27:33 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E4=BA=92=E5=8A=A9=E4=BC=9A?= =?UTF-8?q?=E7=A9=BA=E7=99=BD=E4=BD=8D=E8=A1=A5=E5=85=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- project/fengdu/AppBIBoard/AppBIBoard.vue | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) 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: {村社区数量, 居民群数量, 居民数, 网格数, 群成员数量, 户数, 互助会, 会员数量} } } })