1234567891011121314151617181920212223 |
- <scroll-view scroll-y class="scrollPage">
- <swiper class="screen-swiper square-dot" indicator-dots="true" circular="true" autoplay="true" interval="5000" duration="500">
- <swiper-item wx:for="{{bannerList}}" wx:key>
- <image src="{{item.attinfos[0].url}}" mode="aspectFill" />
- </swiper-item>
- </swiper>
- <view class="grld">
- <block wx:for="{{entrance}}" wx:key="index">
- <view class="group" wx:if="{{item.list.length}}">
- <view class="label"><text class="work {{item.icon}}" />{{item.label}}</view>
- <view class="main">
- <navigator version='trial' class="item" wx:for="{{item.list}}" wx:for-item="it" wx:for-index="i" target='{{item.appid!=appid?"miniProgram":"self"}}' app-id='{{item.appid}}' path="{{it.path+'?auth='+auth+'&userMsg='+userMsg+'&site='+site}}" url="{{it.PageCur ? '#' :it.path}}" open-type="{{it.openType||'navigate'}}" wx:key="name" data-it="{{it}}" data-item="{{item}}" bindtap="openRecord">
- <view class="icon-box" style="background-color: {{it.bColor}};">
- <text class="work {{it.icon}}" style="color: {{it.color}};" />
- </view>
- <view class="name">{{it.name}}</view>
- </navigator>
- </view>
- </view>
- </block>
- </view>
- <view style="height: 160rpx;" />
- </scroll-view>
|