diff --git a/src/apps/AppMeetingNotice/components/detail.vue b/src/apps/AppMeetingNotice/components/detail.vue index 87943bfd..f3d4fd67 100644 --- a/src/apps/AppMeetingNotice/components/detail.vue +++ b/src/apps/AppMeetingNotice/components/detail.vue @@ -116,7 +116,7 @@ toDo(){ this.$http.post("/app/appmeetinginfo/tobeConfirm", null, { params: { - meetingId: this.id, + meetingId: this.params, } }).then(res => { if (res.code == 0) { @@ -160,7 +160,7 @@ updateStatus(status) { this.$http.post(status == 0 ? "/app/appmeetinginfo/absent" : "/app/appmeetinginfo/confirm", null, { params: { - meetingId: this.id, + meetingId: this.params, reason: status == 0 ? "" : null } }).then(res => {