index.wxml 1.2 KB

123456789101112131415161718192021222324252627282930
  1. <!--pages/teacher/index/index.wxml-->
  2. <view class="container">
  3. <!-- 根据选项卡选择的index显示界面 -->
  4. <swiper class='swiper' current='{{currPageIndex}}' duration="0">
  5. <!-- 监控界面 -->
  6. <swiper-item capture-catch:touchmove="catchTouchMove">
  7. <teacherMonitor></teacherMonitor>
  8. </swiper-item>
  9. <!-- 监控界面 -->
  10. <!-- 文件库界面 -->
  11. <swiper-item capture-catch:touchmove="catchTouchMove">
  12. <teacherFile></teacherFile>
  13. </swiper-item>
  14. <!-- 文件库界面 -->
  15. <!-- 故障报修界面 -->
  16. <swiper-item capture-catch:touchmove="catchTouchMove">
  17. <teacherFault></teacherFault>
  18. </swiper-item>
  19. <!-- 故障报修界面 -->
  20. <!-- 我的界面 -->
  21. <swiper-item capture-catch:touchmove="catchTouchMove">
  22. <myInfo></myInfo>
  23. </swiper-item>
  24. <!-- 我的界面 -->
  25. </swiper>
  26. <!-- 根据选项卡选择的index显示界面 -->
  27. <!-- 选项卡tab -->
  28. <tabBar bind:selectItemIndex="selectItemIndex" tabItemJson="{{tabJson}}" initTabIndex="{{0}}"></tabBar>
  29. <!-- 选项卡tab -->
  30. </view>