123456789101112131415161718192021 |
- <view class="container">
- <view class="{{topClass}} 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"
- 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}}"
- bind:select="selectDate" bind:refresh="refreshData"/>
- </view>
|