|
@@ -752,16 +752,19 @@ export default {
|
|
|
text: '正在进行分组,请等待...'
|
|
|
});
|
|
|
// 开始分组讨论
|
|
|
- StartGroup({ task_id: this.task_id, group_count: this.group_count }).then(() => {
|
|
|
- loading.close();
|
|
|
- this.$message.success('开启分组讨论成功');
|
|
|
- this.$router.push({
|
|
|
- path: '/live/teacher/group',
|
|
|
- query: {
|
|
|
- task_id: this.task_id
|
|
|
- }
|
|
|
+ StartGroup({ task_id: this.task_id, group_count: this.group_count })
|
|
|
+ .then(() => {
|
|
|
+ this.$message.success('开启分组讨论成功');
|
|
|
+ this.$router.push({
|
|
|
+ path: '/live/teacher/group',
|
|
|
+ query: {
|
|
|
+ task_id: this.task_id
|
|
|
+ }
|
|
|
+ });
|
|
|
+ })
|
|
|
+ .finally(() => {
|
|
|
+ loading.close();
|
|
|
});
|
|
|
- });
|
|
|
},
|
|
|
|
|
|
closeGroup() {
|