Browse Source

feat(coach): 添加作业类型选择功能

- 在作业添加页面增加作业类型选择的单选框- 作业类型包括班级作业和学员作业
- 实现作业类型选择时更新表单数据
- 优化作业添加页面的样式布局
master
liutong 2 years ago
parent
commit
e560160350
  1. 2
      pages/coach/job/add.vue

2
pages/coach/job/add.vue

@ -106,7 +106,7 @@ export default {
//监听选择器-作业类型 //监听选择器-作业类型
changeType(e) { changeType(e) {
console.log('选择器-作业类型', e); console.log('选择器-作业类型', e);
this.formData.type = e.value; // 更新 course_id this.formData.type = e.value; // 更新 type
}, },
} }
} }

Loading…
Cancel
Save