diff --git a/packages/wechat/AppConference/detail.vue b/packages/wechat/AppConference/detail.vue index 16c533c0..cc0f7b33 100644 --- a/packages/wechat/AppConference/detail.vue +++ b/packages/wechat/AppConference/detail.vue @@ -105,10 +105,10 @@ - - - - + + + + { + toDo() { + this.$confirm("是否确认待定会议?").then(_ => { this.$http.post("/app/appmeetinginfo/tobeConfirm", null, { params: { meetingId: this.detail.id, @@ -338,16 +338,12 @@ export default { }); }, - noticeMetting(meetingId) { - this.instance.post(`/app/appmeetinginfo/notice`, null, - { - params: { - meetingId: this.detail.id, - noticeALL: meetingId ? false : true, - meetingUserId: '' - } - } - ).then(res => { + noticeMetting(meetingUserId) { + this.instance.post(`/app/appmeetinginfo/notice`, null, { + params: { + meetingId: this.detail.id, noticeALL: !meetingUserId, meetingUserId + } + }).then(res => { if (res && res.code == 0) { this.$message.success("提醒成功!") }