diff --git a/.gitignore b/.gitignore index 77addfc6..570c8aa1 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ /.idea /niucloud/runtime /niucloud/vendor +/CLAUDE.md diff --git a/uniapp/.gitignore b/uniapp/.gitignore index 341f62e9..e2ab3d60 100644 --- a/uniapp/.gitignore +++ b/uniapp/.gitignore @@ -2,4 +2,4 @@ unpackage /.idea /node_modules -CLAUDE.md +../CLAUDE.md diff --git a/uniapp/pages/coach/my/index.vue b/uniapp/pages/coach/my/index.vue index 7c7a1a84..106b6089 100644 --- a/uniapp/pages/coach/my/index.vue +++ b/uniapp/pages/coach/my/index.vue @@ -56,18 +56,17 @@ - + 我的体育场 xxx场馆 - - + 即将到期 - + 授课统计 @@ -227,6 +226,22 @@ export default { url: '/pages/coach/my/service_detail' }) }, + + //打开授课统计(真实的授课统计页面) + openViewSchoolingStatisticsReal(){ + this.$navigateTo({ + url: '/pages/coach/my/schooling_statistics' + }) + }, + + //打开体育场信息 + openViewSportsVenue(){ + uni.showModal({ + title: '我的体育场', + content: '当前分配场馆:xxx场馆\n地址:xxx\n联系电话:xxx', + showCancel: false + }) + }, } }