123456789101112131415161718192021 |
- <!--index.wxml-->
- <view>
- <swiper class="swiper" indicator-dots autoplay style="height:{{height}}px">
- <block wx:for="{{banner}}" wx:key="index">
- <swiper-item>
- <image src="{{rooturl+item.imagePath}}" mode="widthFix" bindload="imgHeight"></image>
- </swiper-item>
- </block>
- </swiper>
- <van-grid wx:if="{{ispu}}" column-num="4" style="width:100%">
- <van-grid-item wx:for="{{menus}}" wx:key="index" use-slot bind:click="open" data-path="{{item.linkPath}}">
- <image style="width:{{menu_s}}px;height:{{menu_s}}px" src="{{rooturl+item.icon}}"></image>
- <text style="height:20px;font-size:24rpx">{{item.name}}</text>
- </van-grid-item>
- </van-grid>
- <view class="menu-lb" wx:else>
- <van-cell-group wx:for="{{menus}}" wx:key="index">
- <van-cell title="{{item.name}}" bind:click="open" data-path="{{item.linkPath}}" is-link />
- </van-cell-group>
- </view>
- </view>
|