From 590528ffc7bbb42e0c1cfe5123fc70ae48b0d056 Mon Sep 17 00:00:00 2001 From: liutong <836164388@qq.com> Date: Wed, 12 Mar 2025 10:48:37 +0800 Subject: [PATCH] =?UTF-8?q?feat(coach):=20=E6=B7=BB=E5=8A=A0=E8=AF=BE?= =?UTF-8?q?=E7=A8=8B=E8=AF=A6=E6=83=85=E5=92=8C=E5=88=97=E8=A1=A8=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 新增课程详情页面(info.vue)和课程列表页面(list.vue) - 更新首页(index.vue)样式,增加自定义导航栏 - 修改课表页面(list.vue)布局,添加筛选功能 - 优化课程详情页面样式,展示更多课程信息 --- pages.json | 4 +- pages/coach/course/info.vue | 474 ++++++++++++++++++++++++++++++++++++ pages/coach/course/list.vue | 428 ++++++++++++++++++++++++++++++++ pages/coach/home/index.vue | 288 ++++++++++++---------- 4 files changed, 1062 insertions(+), 132 deletions(-) create mode 100644 pages/coach/course/info.vue create mode 100644 pages/coach/course/list.vue diff --git a/pages.json b/pages.json index abb7a93..dbaee0d 100644 --- a/pages.json +++ b/pages.json @@ -53,7 +53,7 @@ "path": "pages/coach/home/index", "style": { "navigationBarTitleText": "首页", - "navigationStyle": "default", + "navigationStyle": "custom", "navigationBarBackgroundColor": "#fff", "navigationBarTextStyle": "black" } @@ -80,7 +80,7 @@ "path": "pages/coach/course/list", "style": { "navigationBarTitleText": "课表", - "navigationStyle": "default", + "navigationStyle": "custom", "navigationBarBackgroundColor": "#fff", "navigationBarTextStyle": "black" } diff --git a/pages/coach/course/info.vue b/pages/coach/course/info.vue new file mode 100644 index 0000000..e862b56 --- /dev/null +++ b/pages/coach/course/info.vue @@ -0,0 +1,474 @@ + + + + + + \ No newline at end of file diff --git a/pages/coach/course/list.vue b/pages/coach/course/list.vue new file mode 100644 index 0000000..ac88e19 --- /dev/null +++ b/pages/coach/course/list.vue @@ -0,0 +1,428 @@ + + + + + + \ No newline at end of file diff --git a/pages/coach/home/index.vue b/pages/coach/home/index.vue index 389353d..d843c3b 100644 --- a/pages/coach/home/index.vue +++ b/pages/coach/home/index.vue @@ -1,166 +1,175 @@