fix:统一字段名称

This commit is contained in:
weifashi 2023-07-07 17:02:13 +08:00
parent 155f42dd37
commit 371c87f5a4
2 changed files with 3 additions and 3 deletions

View File

@ -298,7 +298,7 @@ export default {
} }
} }
// //
window.__onMeetingEvent = ({act,uuid,channelID}) => { window.__onMeetingEvent = ({act,uuid,meetingid}) => {
switch (act) { switch (act) {
// //
case "getInfo": case "getInfo":
@ -328,7 +328,7 @@ export default {
case "invent": case "invent":
this.$store.dispatch("showMeetingWindow",{ this.$store.dispatch("showMeetingWindow",{
type: "invitation", type: "invitation",
meetingid: channelID meetingid: meetingid
}) })
break; break;
// //

View File

@ -275,7 +275,7 @@ export default {
username: data.nickname, username: data.nickname,
video: this.addData.tracks.includes("video"), video: this.addData.tracks.includes("video"),
audio: this.addData.tracks.includes("audio"), audio: this.addData.tracks.includes("audio"),
channelID: data.meetingid, meetingid: data.meetingid
} }
}); });
this.loadIng--; this.loadIng--;