index.wxml 1.0 KB

123456789101112131415161718192021222324252627
  1. <cu-custom bgColor="bg-gradual-blue">
  2. <view slot="content">首页</view>
  3. </cu-custom>
  4. <!-- 通知栏 -->
  5. <van-sticky offset-top="{{ CustomBar }}">
  6. <view class="header bg-orange light">
  7. <text class="cuIcon-notification block "></text>
  8. <view class="body">
  9. <swiper autoplay interval="5000" duration="500" vertical style="height: 100%;width: 100%;">
  10. <swiper-item bindtap="tipsFunc" data-index="{{index}}" wx:for="{{tips}}" wx:key="index" class="text-cut">
  11. {{item.value}}</swiper-item>
  12. </swiper>
  13. </view>
  14. </view>
  15. </van-sticky>
  16. <!-- 清除吸顶带来的为浮动 不建议这么做-->
  17. <view style="height:90rpx"></view>
  18. <!-- 商品 -->
  19. <veiw class="section">
  20. <view wx:for="{{value}}" wx:key="index" class="bg-img bg-mask padding-tb-xl margin-bottom-xl"
  21. style="background-image: url('{{item.img}}');height: 414rpx;">
  22. <view class="padding-xl text-white">
  23. <view class="padding-xs text-xl">{{item.title}}</view>
  24. <view class="padding-xs">{{item.detail}}</view>
  25. </view>
  26. </view>
  27. </veiw>