fileList.wxml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!--pages/publics/fileList/fileList.wxml-->
  2. <wxs module="filter" src="./util.wxs"></wxs>
  3. <!-- 政策文件 -->
  4. <view style="height: {{height}}">
  5. <view style="height: {{height}};width: 730rpx;margin-left: 10rpx;">
  6. <view style="height: 5%;display: flex;background-color: #ffffff;">
  7. <!-- 规范性文件 -->
  8. <view style="position: relative;margin-left: 35rpx;" class="tab-item {{fileTab==0?'active':''}}" bindtap="clickFileTab" data-item="0">
  9. <view style="height:50rpx;font-size: 30rpx;">规范性文件</view>
  10. </view>
  11. <!-- 其他文件 -->
  12. <view style="position: relative;margin-left: 50rpx;" class="tab-item {{fileTab==1?'active':''}}" bindtap="clickFileTab" data-item="1">
  13. <view style="height:50rpx;font-size: 30rpx;">其他文件</view>
  14. </view>
  15. <!-- 废止和失效文件 -->
  16. <view style="position: relative;margin-left: 50rpx;" class="tab-item {{fileTab==2?'active':''}}" bindtap="clickFileTab" data-item="2">
  17. <view style="height:50rpx;font-size: 30rpx;">废止和失效文件</view>
  18. </view>
  19. </view>
  20. <view style="height: 95%;">
  21. <swiper duration="200" current="{{fileItem}}" bindchange="changeFileTab" style="height: 97%;">
  22. <swiper-item>
  23. <scroll-view scroll-y="true" style="height: 100%;padding:0;margin:0;" bindscrolltolower="scrollBottom">
  24. <include src="file.wxml" />
  25. </scroll-view>
  26. </swiper-item>
  27. <swiper-item>
  28. <scroll-view scroll-y="true" style="height: 100%;padding:0;margin:0;" bindscrolltolower="scrollBottom">
  29. <include src="file.wxml" />
  30. </scroll-view>
  31. </swiper-item>
  32. <swiper-item>
  33. <scroll-view scroll-y="true" style="height: 100%;padding:0;margin:0;" bindscrolltolower="scrollBottom">
  34. <include src="file.wxml" />
  35. </scroll-view>
  36. </swiper-item>
  37. </swiper>
  38. </view>
  39. </view>
  40. </view>