From 93ecc8345bf1e7cecd517b7491c63ef67fec406a Mon Sep 17 00:00:00 2001 From: liutong <836164388@qq.com> Date: Tue, 11 Mar 2025 19:26:24 +0800 Subject: [PATCH] =?UTF-8?q?feat(AQTabber):=20=E6=9B=B4=E6=96=B0=E8=AF=BE?= =?UTF-8?q?=E8=A1=A8=E8=B7=B3=E8=BD=AC=E8=B7=AF=E5=BE=84=E5=B9=B6=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E7=9B=B8=E5=85=B3=E9=A1=B5=E9=9D=A2=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 修改 AQTabber组件中课表页面的跳转路径 - 在 pages.json 中添加课表和课时详情页面的配置项 --- components/AQ/AQTabber.vue | 2 +- pages.json | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/components/AQ/AQTabber.vue b/components/AQ/AQTabber.vue index 431a50c..4aac156 100644 --- a/components/AQ/AQTabber.vue +++ b/components/AQ/AQTabber.vue @@ -51,7 +51,7 @@ }, { text: "课表", - urlPath:'/pages/student/timetable/index',//自定义页面跳转路径 + urlPath:'/pages/coach/course/list',//自定义页面跳转路径 iconPath: "/static/images/tabbar/my.png", selectedIconPath: "/static/images/tabbar/my.png" }, diff --git a/pages.json b/pages.json index 15c3ed3..abb7a93 100644 --- a/pages.json +++ b/pages.json @@ -75,6 +75,24 @@ "navigationBarBackgroundColor": "#fff", "navigationBarTextStyle": "black" } + }, + { + "path": "pages/coach/course/list", + "style": { + "navigationBarTitleText": "课表", + "navigationStyle": "default", + "navigationBarBackgroundColor": "#fff", + "navigationBarTextStyle": "black" + } + }, + { + "path": "pages/coach/course/info", + "style": { + "navigationBarTitleText": "课时详情", + "navigationStyle": "default", + "navigationBarBackgroundColor": "#fff", + "navigationBarTextStyle": "black" + } } ],