From 2b12cdf9b512f4d2510dfa39b415d1e405d87d03 Mon Sep 17 00:00:00 2001 From: liutong <836164388@qq.com> Date: Wed, 12 Mar 2025 18:37:43 +0800 Subject: [PATCH] =?UTF-8?q?feat(coach):=20=E6=B7=BB=E5=8A=A0=E5=AD=A6?= =?UTF-8?q?=E5=91=98=E8=AF=A6=E6=83=85=E9=A1=B5=E9=9D=A2=E5=B9=B6=E4=BC=98?= =?UTF-8?q?=E5=8C=96=E7=8F=AD=E7=BA=A7=E4=BF=A1=E6=81=AF=E5=B1=95=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 新增学员详情页面,路径为/pages/coach/student/info - 在班级信息页面添加课程详情和学员详情的跳转功能 - 优化班级成员列表的展示样式,增加点击事件 - 添加作业任务列表展示功能 --- pages.json | 13 + pages/coach/class/info.vue | 16 +- pages/coach/student/info.vue | 686 +++++++++++++++++++++++++++++++++++ 3 files changed, 707 insertions(+), 8 deletions(-) create mode 100644 pages/coach/student/info.vue diff --git a/pages.json b/pages.json index 737dc00..1efb958 100644 --- a/pages.json +++ b/pages.json @@ -132,7 +132,20 @@ "navigationBarBackgroundColor": "#292929", "navigationBarTextStyle": "white" } + }, + { + "path": "pages/coach/student/info", + "style": { + "navigationBarTitleText": "学员详情", + "navigationStyle": "default", + "navigationBarBackgroundColor": "#29d3b4", + "navigationBarTextStyle": "white" + } } + + + + ], "globalStyle": { "navigationBarTextStyle": "white", diff --git a/pages/coach/class/info.vue b/pages/coach/class/info.vue index a38d729..581e1f7 100644 --- a/pages/coach/class/info.vue +++ b/pages/coach/class/info.vue @@ -40,7 +40,7 @@ 最近课程 - + 篮球少儿课 @@ -48,7 +48,7 @@ 2020.05.30 15:30 - 17:30 - + 篮球少儿课 @@ -73,7 +73,7 @@ - + @@ -97,7 +97,7 @@ - + @@ -121,7 +121,7 @@ - + @@ -145,7 +145,7 @@ - + @@ -169,7 +169,7 @@ - + @@ -193,7 +193,7 @@ - + diff --git a/pages/coach/student/info.vue b/pages/coach/student/info.vue new file mode 100644 index 0000000..f8116d2 --- /dev/null +++ b/pages/coach/student/info.vue @@ -0,0 +1,686 @@ + + + + + + \ No newline at end of file