From ff4f83959ad4c42853dd1d653f5d13f4ab65a6fe Mon Sep 17 00:00:00 2001 From: liuye Date: Fri, 21 Oct 2022 11:28:16 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E5=9C=A8=E8=81=8C=E5=85=9A=E5=91=98?= =?UTF-8?q?=E7=A4=BE=E5=8C=BA=E6=8A=A5=E5=88=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../apps/AppCommunityMember/Detail.vue | 44 ++++++++++++++++--- 1 file changed, 37 insertions(+), 7 deletions(-) diff --git a/project/pingchang/apps/AppCommunityMember/Detail.vue b/project/pingchang/apps/AppCommunityMember/Detail.vue index 919f57e8..e2403edf 100644 --- a/project/pingchang/apps/AppCommunityMember/Detail.vue +++ b/project/pingchang/apps/AppCommunityMember/Detail.vue @@ -19,7 +19,7 @@ {{ info.total }} {{ dict.getLabel('partyReportSignupStatus', info.signupStatus) }} {{ dict.getLabel('activityStatus', info.actionStatus) }} - {{ info.beginTime.substring(0, 10) }} 至 {{ info.endTime.substring(0, 10) }} + {{ info.beginTime }} 至 {{ info.endTime }} {{ info.stopSignupTime }} {{ info.contactPerson }} {{ info.contactPhone }} @@ -34,8 +34,9 @@ + + + {{ userInfo.userName }} + {{ userInfo.submitTime }} + {{ userInfo.content }} + + + + + + @@ -87,7 +103,9 @@ export default { {prop: "logStatus", label: "活动日志", align: "center", dict: 'partyReportSignupLogStatus'}, {slot: "options"}, ], - userList: [] + userList: [], + showDialog: false, + userInfo: {} } }, @@ -106,7 +124,7 @@ export default { getInfo() { this.instance.post(`/app/apppartyreport/queryDetailById?id=${this.id}`).then((res) => { if (res?.data) { - this.info = res.data; + this.info = res.data if (this.info.birthday) { this.info.birthday = this.info.birthday.substring(0, 10); } @@ -117,8 +135,20 @@ export default { this.instance.post(`/app/apppartyreport/signup-info?id=${this.id}`).then((res) => { if (res?.data) { res.data.map((item) => { - item.signupTime = item.signupTime.substring(0, 10) + if(item.signupTime) { + item.signupTime = item.signupTime.substring(0, 10) + } }) + this.userList = res.data + } + }); + }, + viewUser(row) { + this.instance.post(`app/apppartyreport/log?id=${row.id}`).then((res) => { + if (res.code == 0) { + this.userInfo = {...res.data} + this.userInfo.userName = row.partyName + this.showDialog = true } }); }, From bd418579620c8d9102e1e62ad639793deb5ed78d Mon Sep 17 00:00:00 2001 From: aixianling Date: Fri, 21 Oct 2022 11:53:29 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E5=85=88=E6=8F=90=E4=BA=A4=E4=B8=80?= =?UTF-8?q?=E6=B3=A2=E6=95=B4=E7=90=86=E7=9A=84=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../AppOrganizationChange.vue | 36 ++-- .../AppOrganizationChange/components/List.vue | 49 +++--- .../components/addChange.vue | 67 ++++--- .../components/history.vue | 45 +++-- .../components/moment.vue | 165 +++++++++--------- .../components/organizationSetting.vue | 61 +++---- 6 files changed, 196 insertions(+), 227 deletions(-) diff --git a/project/pingchang/apps/AppOrganizationChange/AppOrganizationChange.vue b/project/pingchang/apps/AppOrganizationChange/AppOrganizationChange.vue index b51e266e..fb79d1fd 100644 --- a/project/pingchang/apps/AppOrganizationChange/AppOrganizationChange.vue +++ b/project/pingchang/apps/AppOrganizationChange/AppOrganizationChange.vue @@ -1,12 +1,13 @@ @@ -161,4 +156,4 @@ export default { padding-top: 0 !important; background-color: #FFF !important; } - \ No newline at end of file + diff --git a/project/pingchang/apps/AppOrganizationChange/components/organizationSetting.vue b/project/pingchang/apps/AppOrganizationChange/components/organizationSetting.vue index efc17947..6edde1c1 100644 --- a/project/pingchang/apps/AppOrganizationChange/components/organizationSetting.vue +++ b/project/pingchang/apps/AppOrganizationChange/components/organizationSetting.vue @@ -50,7 +50,7 @@ 系统将在下次换届时间开始前,对“换届提醒人”进行提醒。提醒方式包括平台消息推送、短信提醒。
- +
{{ user.info.organizationName }}
@@ -71,11 +71,11 @@ - + + :url="`/app/appparty/list?partyOrgId=${form.organizationId}`" headerTitle="党员列表" + :isMultiple="true" dialogTitle="选择抄送人" @selectPerson="selectUser" class="aipersonselect"> @@ -91,18 +91,18 @@ 保存 - +