From 4284e792b481e032af6b0c93ffb865bc3c055e29 Mon Sep 17 00:00:00 2001 From: jianjun Date: Thu, 31 Mar 2022 17:26:09 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E5=88=86=E6=9E=90?= =?UTF-8?q?=E7=9A=84=E5=8F=8D=E5=BA=94=E6=B8=A0=E9=81=93=E9=80=82=E9=85=8D?= =?UTF-8?q?=E5=B8=82=E5=8C=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/visual/communityGovern/typeAnalyze.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/views/modules/visual/communityGovern/typeAnalyze.vue b/src/views/modules/visual/communityGovern/typeAnalyze.vue index fa663444..da80d8d3 100644 --- a/src/views/modules/visual/communityGovern/typeAnalyze.vue +++ b/src/views/modules/visual/communityGovern/typeAnalyze.vue @@ -421,6 +421,9 @@ export default { this.demand.list = data.list.map((item) => { //楼院小组:issue; 项目立项:agency 事件上报:resi_event【也可控制点击查看时里边三个按钮的显示】 item.originShow = item.origin === 'issue' ? '楼院小组' : item.origin === 'agency' ? '项目立项' : '事件上报' + if (item.origin === 'issue'){ + item.originShow = item.topicId == null ? '党群议事': '邻里党群' + } //状态:待处理 pending,已结案closed item.statusShow = item.status === 'pending' ? '待处理' : '已结案' return [ From e7e4dadac859be3b5943655f14a50ec0b7397008 Mon Sep 17 00:00:00 2001 From: jianjun Date: Thu, 31 Mar 2022 17:36:00 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E5=88=86=E6=9E=90?= =?UTF-8?q?=E7=9A=84=E5=8F=8D=E5=BA=94=E6=B8=A0=E9=81=93=E9=80=82=E9=85=8D?= =?UTF-8?q?=E5=B8=82=E5=8C=972?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/visual/communityGovern/typeAnalyze.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/modules/visual/communityGovern/typeAnalyze.vue b/src/views/modules/visual/communityGovern/typeAnalyze.vue index da80d8d3..e5d7b55c 100644 --- a/src/views/modules/visual/communityGovern/typeAnalyze.vue +++ b/src/views/modules/visual/communityGovern/typeAnalyze.vue @@ -422,7 +422,7 @@ export default { //楼院小组:issue; 项目立项:agency 事件上报:resi_event【也可控制点击查看时里边三个按钮的显示】 item.originShow = item.origin === 'issue' ? '楼院小组' : item.origin === 'agency' ? '项目立项' : '事件上报' if (item.origin === 'issue'){ - item.originShow = item.topicId == null ? '党群议事': '邻里党群' + item.originShow = item.topicId ? '党群议事': '邻里党群' } //状态:待处理 pending,已结案closed item.statusShow = item.status === 'pending' ? '待处理' : '已结案' From 2c504f2ff7c046a9c07639e4fef2d5da3bd0b32b Mon Sep 17 00:00:00 2001 From: jianjun Date: Thu, 31 Mar 2022 17:47:35 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E5=88=86=E6=9E=90?= =?UTF-8?q?=E7=9A=84=E5=8F=8D=E5=BA=94=E6=B8=A0=E9=81=93=E9=80=82=E9=85=8D?= =?UTF-8?q?=E5=B8=82=E5=8C=973?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/visual/communityGovern/typeAnalyze.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/modules/visual/communityGovern/typeAnalyze.vue b/src/views/modules/visual/communityGovern/typeAnalyze.vue index e5d7b55c..f1c3c5a6 100644 --- a/src/views/modules/visual/communityGovern/typeAnalyze.vue +++ b/src/views/modules/visual/communityGovern/typeAnalyze.vue @@ -422,7 +422,7 @@ export default { //楼院小组:issue; 项目立项:agency 事件上报:resi_event【也可控制点击查看时里边三个按钮的显示】 item.originShow = item.origin === 'issue' ? '楼院小组' : item.origin === 'agency' ? '项目立项' : '事件上报' if (item.origin === 'issue'){ - item.originShow = item.topicId ? '党群议事': '邻里党群' + item.originShow = item.topicId ? '邻里党群' : '党群议事' } //状态:待处理 pending,已结案closed item.statusShow = item.status === 'pending' ? '待处理' : '已结案'