index.wxml 1.1 KB

123456789101112131415161718192021
  1. <nav-bar navbar-data='{{navbarData}}' needBack="{{false}}"></nav-bar>
  2. <view class="main" style="padding-top:{{height}}px;height:{{windowHeight-height}}px">
  3. <el-col class="one" style="height:{{windowHeight-height}}px">
  4. <view class="swiper-tab">
  5. <view class="swiper-tab-item {{currentTab==0?'active':''}}" data-current="0" bindtap="clickTab">国内新闻</view>
  6. <view class="swiper-tab-item {{currentTab==1?'active':''}}" data-current="1" bindtap="clickTab">健康资讯</view>
  7. </view>
  8. <swiper current="{{currentTab}}" style="height:{{windowHeight-height-40}}px">
  9. <swiper-item catchtouchmove="stopTab">
  10. <view class="one_1" style="height:{{windowHeight-height-40}}px">
  11. <news-list list="{{oneList}}" bind:detail="detail"></news-list>
  12. </view>
  13. </swiper-item>
  14. <swiper-item catchtouchmove="stopTab">
  15. <view class="one_1" style="height:{{windowHeight-height-40}}px">
  16. <news-list list="{{twoList}}" bind:detail="detail"></news-list>
  17. </view>
  18. </swiper-item>
  19. </swiper>
  20. </el-col>
  21. </view>