新增教练端,实现业务闭环:会员登录注册→查询团课→预约团课→扫码签到→教练端开课→记录实际开课时间→教练端结课→记录实际结课时间→后台查询数据

This commit is contained in:
2026-07-20 17:21:28 +08:00
parent df0e68469b
commit 4a4697c816
84 changed files with 6914 additions and 258 deletions
+48
View File
@@ -0,0 +1,48 @@
{
"pages": [
{
"path": "pages/login/login",
"style": {
"navigationBarTitleText": "教练登录",
"navigationStyle": "custom"
}
},
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "教练首页",
"navigationStyle": "custom",
"enablePullDownRefresh": true
}
},
{
"path": "pages/course-list/course-list",
"style": {
"navigationBarTitleText": "我的团课",
"navigationStyle": "custom",
"enablePullDownRefresh": true
}
},
{
"path": "pages/course-detail/course-detail",
"style": {
"navigationBarTitleText": "课程详情",
"navigationStyle": "custom"
}
},
{
"path": "pages/profile/profile",
"style": {
"navigationBarTitleText": "个人中心",
"navigationStyle": "custom"
}
}
],
"globalStyle": {
"navigationBarTextStyle": "white",
"navigationBarTitleText": "Novalon教练端",
"navigationBarBackgroundColor": "#1A1A1A",
"backgroundColor": "#F5F7FA"
},
"uniIdRouter": {}
}