From 1d40462fd9173392b2d7aeabfa10e85c58b2631e Mon Sep 17 00:00:00 2001 From: aixianling Date: Fri, 3 Dec 2021 15:18:13 +0800 Subject: [PATCH 1/3] BUG 25119 --- .../AppMeetingNotice/AppMeetingNotice.vue | 391 +++++++++--------- src/components/AiOpenData.vue | 10 +- 2 files changed, 207 insertions(+), 194 deletions(-) diff --git a/src/apps/AppMeetingNotice/AppMeetingNotice.vue b/src/apps/AppMeetingNotice/AppMeetingNotice.vue index f28f980e..91fda8d4 100644 --- a/src/apps/AppMeetingNotice/AppMeetingNotice.vue +++ b/src/apps/AppMeetingNotice/AppMeetingNotice.vue @@ -6,7 +6,7 @@ - {{item.label}} + {{ item.label }} @@ -14,26 +14,30 @@
待参加的会议
diff --git a/src/components/AiOpenData.vue b/src/components/AiOpenData.vue index d207f0e8..c73522c6 100644 --- a/src/components/AiOpenData.vue +++ b/src/components/AiOpenData.vue @@ -1,5 +1,5 @@ From 17b02e690390204a3178c6e00733203e3497adaf Mon Sep 17 00:00:00 2001 From: wanglei <1336977847@qq.com> Date: Fri, 3 Dec 2021 15:21:18 +0800 Subject: [PATCH 3/3] 25216 --- src/apps/AppMeetingNotice/components/addMeeting.vue | 6 +++++- src/apps/AppNotification/components/add.vue | 7 ++++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/src/apps/AppMeetingNotice/components/addMeeting.vue b/src/apps/AppMeetingNotice/components/addMeeting.vue index c149682e..b67ee4ff 100644 --- a/src/apps/AppMeetingNotice/components/addMeeting.vue +++ b/src/apps/AppMeetingNotice/components/addMeeting.vue @@ -158,7 +158,11 @@ export default { methods: { ...mapActions(['selectEnterpriseContact']), handleSelectUser() { - this.selectEnterpriseContact({fromDepartmentId:0,type:["department", "user"]}).then(res => { + this.selectEnterpriseContact({ + fromDepartmentId:0, + type:["department", "user"], + selectedUserIds: this.form.attendees?.map(e=>e.id) + }).then(res => { this.change(res?.userList || []) }) }, diff --git a/src/apps/AppNotification/components/add.vue b/src/apps/AppNotification/components/add.vue index 6e1a0a48..8bf5d38d 100644 --- a/src/apps/AppNotification/components/add.vue +++ b/src/apps/AppNotification/components/add.vue @@ -121,8 +121,13 @@ methods: { ...mapActions(['selectEnterpriseContact']), handleSelectUser() { - this.selectEnterpriseContact({fromDepartmentId:0,type:["department", "user"]}).then(res => { + this.selectEnterpriseContact({ + fromDepartmentId:0, + type:["department", "user"], + selectedUserIds: this.form.persons?.map(e=>e.id) + }).then(res => { this.form.persons = res?.userList || [] + console.log(this.form.persons); }) }, confirm(e){