eduDetail.wxml 1.0 KB

123456789101112131415161718192021
  1. <view class="container {{topClass}}">
  2. <view class="top-position">
  3. <van-tabs active="{{ active }}" bind:change="onChange" line-width="40rpx" line-height="7rpx" color='#FF4330'
  4. title-active-color="#333" title-inactive-color="#999" tab-class="tab-item"
  5. custom-class="tab-container">
  6. <van-tab title="介绍">
  7. </van-tab>
  8. <van-tab title="日程">
  9. </van-tab>
  10. </van-tabs>
  11. <view class="divide"></view>
  12. </view>
  13. <view style="height:100rpx;"></view>
  14. <edu-introuce item="{{item}}" students="{{stuData}}" messageList="{{rows}}" isPre="{{isPre}}"
  15. bind:publish="onHandlePublish" isRefresh="{{isRefresh}}" isLoading="{{isLoading}}"
  16. noMore="{{noMore}}"
  17. bind:refresh="refreshData"
  18. wx:if="{{active == 0}}"/>
  19. <edu-plan wx:if="{{active == 1}}" obj="{{item}}" isPre="{{isPre}}" courseList="{{courseList}}"
  20. bind:select="selectDate" bind:refresh="refreshData"/>
  21. </view>