|
@@ -236,7 +236,6 @@ export default {
|
|
task_id: this.$route.query.task_id,
|
|
task_id: this.$route.query.task_id,
|
|
// 连麦
|
|
// 连麦
|
|
connect: false,
|
|
connect: false,
|
|
- connectStudent: {},
|
|
|
|
// 等待接通
|
|
// 等待接通
|
|
callLoading: false,
|
|
callLoading: false,
|
|
dialogVisible: false,
|
|
dialogVisible: false,
|
|
@@ -312,6 +311,10 @@ export default {
|
|
return '#6aee4c';
|
|
return '#6aee4c';
|
|
}
|
|
}
|
|
return '#38d514';
|
|
return '#38d514';
|
|
|
|
+ },
|
|
|
|
+ connectStudent() {
|
|
|
|
+ let connect = this.student_list.find(item => item.deal_mode !== 0);
|
|
|
|
+ return connect || {};
|
|
}
|
|
}
|
|
},
|
|
},
|
|
watch: {
|
|
watch: {
|
|
@@ -458,7 +461,6 @@ export default {
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
this.callLoading = true;
|
|
this.callLoading = true;
|
|
- this.connectStudent = student;
|
|
|
|
GetLiveRoomInfo({ task_id: this.task_id })
|
|
GetLiveRoomInfo({ task_id: this.task_id })
|
|
.then(({ video_mode }) => {
|
|
.then(({ video_mode }) => {
|
|
let uid = student.room_user_id;
|
|
let uid = student.room_user_id;
|
|
@@ -474,7 +476,6 @@ export default {
|
|
},
|
|
},
|
|
roomUpdateFailed: data => {
|
|
roomUpdateFailed: data => {
|
|
this.callLoading = false;
|
|
this.callLoading = false;
|
|
- this.connectStudent = '';
|
|
|
|
this.$message.error('连麦音视频模式更新请求失败! 请稍后再试!');
|
|
this.$message.error('连麦音视频模式更新请求失败! 请稍后再试!');
|
|
}
|
|
}
|
|
});
|
|
});
|
|
@@ -482,7 +483,6 @@ export default {
|
|
})
|
|
})
|
|
.catch(() => {
|
|
.catch(() => {
|
|
this.callLoading = false;
|
|
this.callLoading = false;
|
|
- this.connectStudent = '';
|
|
|
|
});
|
|
});
|
|
},
|
|
},
|
|
|
|
|
|
@@ -527,10 +527,14 @@ export default {
|
|
uid: this.connectStudent.room_user_id
|
|
uid: this.connectStudent.room_user_id
|
|
});
|
|
});
|
|
}
|
|
}
|
|
- this.dealStudentConnection(this.connectStudent.room_user_id, 0, this.roomInfo.video_mode);
|
|
|
|
|
|
+
|
|
|
|
+ this.dealStudentConnection(
|
|
|
|
+ this.connectStudent.room_user_id,
|
|
|
|
+ 0,
|
|
|
|
+ this.connectStudent.connection_mode
|
|
|
|
+ );
|
|
|
|
|
|
this.callLoading = false;
|
|
this.callLoading = false;
|
|
- this.connectStudent = '';
|
|
|
|
common.updateMcResult('', 0);
|
|
common.updateMcResult('', 0);
|
|
this.$message.success('下麦成功');
|
|
this.$message.success('下麦成功');
|
|
},
|
|
},
|
|
@@ -538,6 +542,7 @@ export default {
|
|
this.callLoading = false;
|
|
this.callLoading = false;
|
|
this.connect = false;
|
|
this.connect = false;
|
|
console.log('下麦失败', data);
|
|
console.log('下麦失败', data);
|
|
|
|
+ this.$message.warning(`下麦失败:${data.errorMsg}`);
|
|
}
|
|
}
|
|
});
|
|
});
|
|
},
|
|
},
|