From e56016035024b41cc5647ff8dd13b25b54d6480b Mon Sep 17 00:00:00 2001 From: liutong <836164388@qq.com> Date: Mon, 24 Mar 2025 11:05:27 +0800 Subject: [PATCH] =?UTF-8?q?feat(coach):=20=E6=B7=BB=E5=8A=A0=E4=BD=9C?= =?UTF-8?q?=E4=B8=9A=E7=B1=BB=E5=9E=8B=E9=80=89=E6=8B=A9=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在作业添加页面增加作业类型选择的单选框- 作业类型包括班级作业和学员作业 - 实现作业类型选择时更新表单数据 - 优化作业添加页面的样式布局 --- pages/coach/job/add.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/coach/job/add.vue b/pages/coach/job/add.vue index ceec87d..b79c1df 100644 --- a/pages/coach/job/add.vue +++ b/pages/coach/job/add.vue @@ -106,7 +106,7 @@ export default { //监听选择器-作业类型 changeType(e) { console.log('选择器-作业类型', e); - this.formData.type = e.value; // 更新 course_id + this.formData.type = e.value; // 更新 type }, } }