|
|
@ -56,18 +56,17 @@ |
|
|
|
|
|
|
|
|
<view class="main_section"> |
|
|
<view class="main_section"> |
|
|
<view class="section_box"> |
|
|
<view class="section_box"> |
|
|
<view class="item"> |
|
|
<view class="item" @click="openViewSportsVenue()"> |
|
|
<view>我的体育场</view> |
|
|
<view>我的体育场</view> |
|
|
<view>xxx场馆</view> |
|
|
<view>xxx场馆</view> |
|
|
</view> |
|
|
</view> |
|
|
|
|
|
|
|
|
<!-- <view class="item" @click="openViewDueSoon()"> --> |
|
|
<view class="item" @click="openViewDueSoon()"> |
|
|
<view class="item"> |
|
|
|
|
|
<view>即将到期</view> |
|
|
<view>即将到期</view> |
|
|
<view></view> |
|
|
<view></view> |
|
|
</view> |
|
|
</view> |
|
|
|
|
|
|
|
|
<view class="item"> |
|
|
<view class="item" @click="openViewSchoolingStatisticsReal()"> |
|
|
<view>授课统计</view> |
|
|
<view>授课统计</view> |
|
|
<view></view> |
|
|
<view></view> |
|
|
</view> |
|
|
</view> |
|
|
@ -227,6 +226,22 @@ export default { |
|
|
url: '/pages/coach/my/service_detail' |
|
|
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 |
|
|
|
|
|
}) |
|
|
|
|
|
}, |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
</script> |
|
|
</script> |
|
|
|