index.wxml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <cu-custom bgColor="bg-gradual-blue">
  2. <view slot="content">首页</view>
  3. <view class="action " slot="right">
  4. <view class="cu-load load-icon padding-left {{isLoad?'loading':'over'}}"></view>
  5. </view>
  6. </cu-custom>
  7. <!-- 通知栏 -->
  8. <van-sticky offset-top="{{ CustomBar }}">
  9. <view class="header bg-orange light">
  10. <text class="cuIcon-notification block "></text>
  11. <view class="body">
  12. <swiper autoplay interval="5000" duration="500" vertical style="height: 100%;width: 100%;">
  13. <swiper-item bindtap="tipsFunc" data-index="{{index}}" wx:for="{{tips}}" wx:key="index" class="text-cut">
  14. {{item.value}}</swiper-item>
  15. </swiper>
  16. </view>
  17. </view>
  18. </van-sticky>
  19. <!-- 清除吸顶带来的为浮动 不建议这么做-->
  20. <view style="height:90rpx"></view>
  21. <!-- 商品 -->
  22. <veiw class="section">
  23. <view bindtap="onClickFunc" data-index="{{index}}" wx:for="{{value.value}}" wx:key="index"
  24. class="bg-img bg-mask padding-tb-xl margin-bottom-xl" style="background-image: url('{{item.img}}');height: 414rpx;">
  25. <view class="padding-xl text-white">
  26. <view class="padding-xs text-xl text-cut">{{item.title}}</view>
  27. <view class="padding-xs">{{item.detail}}</view>
  28. </view>
  29. </view>
  30. <view class="cu-load bg-grey {{value.page > value.totalPage ?'over':'loading'}}"></view>
  31. <van-empty wx:if="{{value.value.length == 0}}" description="暂无商品" />
  32. </veiw>
  33. <view style="height: 100rpx;"></view>
  34. <view class="cu-bar tabbar bg-white shadow foot">
  35. <view class="action" bindtap="NavChange" data-active="true" data-path="pages/index/index">
  36. <view class='cuIcon-cu-image'>
  37. <image src="../../assets/tabber/menu_copy.png"></image>
  38. </view>
  39. <view class="text-blue">首页</view>
  40. </view>
  41. <view class="action" bindtap="NavChange" data-path="pages/add/index">
  42. <view class='cuIcon-cu-image'>
  43. <image src="../../assets/tabber/add_copy1.png"></image>
  44. </view>
  45. <view class="text-black">新增填报</view>
  46. </view>
  47. <view class="action" bindtap="NavChange" data-path="pages/login/index">
  48. <view class='cuIcon-cu-image'>
  49. <image src="../../assets/tabber/my_copy1.png"></image>
  50. </view>
  51. <view class="text-black">我的</view>
  52. </view>
  53. </view>