123456789101112131415161718192021222324252627 |
- <cu-custom bgColor="bg-gradual-blue">
- <view slot="content">首页</view>
- </cu-custom>
- <!-- 通知栏 -->
- <van-sticky offset-top="{{ CustomBar }}">
- <view class="header bg-orange light">
- <text class="cuIcon-notification block "></text>
- <view class="body">
- <swiper autoplay interval="5000" duration="500" vertical style="height: 100%;width: 100%;">
- <swiper-item bindtap="tipsFunc" data-index="{{index}}" wx:for="{{tips}}" wx:key="index" class="text-cut">
- {{item.value}}</swiper-item>
- </swiper>
- </view>
- </view>
- </van-sticky>
- <!-- 清除吸顶带来的为浮动 不建议这么做-->
- <view style="height:90rpx"></view>
- <!-- 商品 -->
- <veiw class="section">
- <view wx:for="{{value}}" wx:key="index" class="bg-img bg-mask padding-tb-xl margin-bottom-xl"
- style="background-image: url('{{item.img}}');height: 414rpx;">
- <view class="padding-xl text-white">
- <view class="padding-xs text-xl">{{item.title}}</view>
- <view class="padding-xs">{{item.detail}}</view>
- </view>
- </view>
- </veiw>
|