123456789101112131415161718192021222324 |
- <to-login bind:login="bindLogin">
- <view class="container {{topClass}}">
- <view class="top-position">
- <van-tabs active="{{ active }}" bind:change="onChange" line-width="40rpx" line-height="7rpx" color='#FF4330'
- title-active-color="#333" title-inactive-color="#999" tab-class="tab-item" id="tabs"
- custom-class="tab-container">
- <van-tab title="介绍">
- </van-tab>
- <van-tab title="日程">
- </van-tab>
- </van-tabs>
- <view class="divide"></view>
- </view>
- <view style="height:100rpx;"></view>
- <edu-introuce item="{{item}}" students="{{stuData}}" messageList="{{rows}}" isPre="{{isPre}}"
- bind:publish="onHandlePublish" isRefresh="{{isRefresh}}" isLoading="{{isLoading}}"
- noMore="{{noMore}}"
- bind:refresh="refreshData"
- wx:if="{{active == 0}}"/>
- <edu-plan wx:if="{{active == 1}}" obj="{{item}}" isPre="{{isPre}}" courseList="{{courseList}}" id="eduPlan"
- bind:select="selectDate" bind:refresh="refreshData"/>
- </view>
- </to-login>
|