This commit is contained in:
wanglei
2021-12-01 17:34:07 +08:00
parent 675933b067
commit 59907b8be8

View File

@@ -116,7 +116,7 @@
toDo(){ toDo(){
this.$http.post("/app/appmeetinginfo/tobeConfirm", null, { this.$http.post("/app/appmeetinginfo/tobeConfirm", null, {
params: { params: {
meetingId: this.id, meetingId: this.params,
} }
}).then(res => { }).then(res => {
if (res.code == 0) { if (res.code == 0) {
@@ -160,7 +160,7 @@
updateStatus(status) { updateStatus(status) {
this.$http.post(status == 0 ? "/app/appmeetinginfo/absent" : "/app/appmeetinginfo/confirm", null, { this.$http.post(status == 0 ? "/app/appmeetinginfo/absent" : "/app/appmeetinginfo/confirm", null, {
params: { params: {
meetingId: this.id, meetingId: this.params,
reason: status == 0 ? "" : null reason: status == 0 ? "" : null
} }
}).then(res => { }).then(res => {