index.wxml 910 B

123456789101112131415161718192021
  1. <!--index.wxml-->
  2. <view>
  3. <swiper class="swiper" indicator-dots autoplay style="height:{{height}}px">
  4. <block wx:for="{{banner}}" wx:key="index">
  5. <swiper-item>
  6. <image src="{{rooturl+item.imagePath}}" mode="widthFix" bindload="imgHeight"></image>
  7. </swiper-item>
  8. </block>
  9. </swiper>
  10. <van-grid wx:if="{{ispu}}" column-num="4" style="width:100%">
  11. <van-grid-item wx:for="{{menus}}" wx:key="index" use-slot bind:click="open" data-path="{{item.linkPath}}">
  12. <image style="width:{{menu_s}}px;height:{{menu_s}}px" src="{{rooturl+item.icon}}"></image>
  13. <text style="height:20px;font-size:24rpx">{{item.name}}</text>
  14. </van-grid-item>
  15. </van-grid>
  16. <view class="menu-lb" wx:else>
  17. <van-cell-group wx:for="{{menus}}" wx:key="index">
  18. <van-cell title="{{item.name}}" bind:click="open" data-path="{{item.linkPath}}" is-link />
  19. </van-cell-group>
  20. </view>
  21. </view>