123456789101112131415161718192021222324252627282930 |
- <!--pages/teacher/index/index.wxml-->
- <view class="container">
- <!-- 根据选项卡选择的index显示界面 -->
- <swiper class='swiper' current='{{currPageIndex}}' duration="0">
- <!-- 监控界面 -->
- <swiper-item capture-catch:touchmove="catchTouchMove">
- <teacherMonitor></teacherMonitor>
- </swiper-item>
- <!-- 监控界面 -->
- <!-- 文件库界面 -->
- <swiper-item capture-catch:touchmove="catchTouchMove">
- <teacherFile></teacherFile>
- </swiper-item>
- <!-- 文件库界面 -->
- <!-- 故障报修界面 -->
- <swiper-item capture-catch:touchmove="catchTouchMove">
- <teacherFault></teacherFault>
- </swiper-item>
- <!-- 故障报修界面 -->
- <!-- 我的界面 -->
- <swiper-item capture-catch:touchmove="catchTouchMove">
- <myInfo></myInfo>
- </swiper-item>
- <!-- 我的界面 -->
- </swiper>
- <!-- 根据选项卡选择的index显示界面 -->
- <!-- 选项卡tab -->
- <tabBar bind:selectItemIndex="selectItemIndex" tabItemJson="{{tabJson}}" initTabIndex="{{0}}"></tabBar>
- <!-- 选项卡tab -->
- </view>
|