| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 | <view class="head" /><Yl_ListBox id='ListBox' pullDown='{{false}}'>	<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>	<navigator url="/marketing/annunciate/index">		<van-notice-bar left-icon="volume-o" text="{{annunciate.title}}" />	</navigator>	<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">					<!--  path="{{it.path+'?auth='+auth+'&userMsg='+userMsg+'&site='+site}}" url="{{it.PageCur ? '#' :it.path}}" open-type="{{it.openType||'navigate'}}" -->					<navigator version='trial' class="item" wx:for="{{item.list}}" url="#" wx:for-item="it" wx:for-index="i" target='{{item.appid!=appid?"miniProgram":"self"}}' app-id='{{item.appid}}' 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 class="group newest">			<view class="label">				<view><text class="work iconfont icon-a-biaoqianlanxiaoxi" />最新消息</view>				<navigator url="#" class="route" bindtap="toMsg">					查看全部					<van-icon name="arrow" />				</navigator>			</view>			<navigator class="msg-mian" url="/pages/index/message/detail?id={{item.messageid}}" wx:for="{{msgList}}" wx:key="messageid">				<view class="name">{{item.title}}<text>{{item.createdate}}</text></view>				<view class="message line-1">{{item.message}}</view>			</navigator>			<view style="height:10rpx;" />		</view>	</view>	<view style="height: 100rpx;" /></Yl_ListBox>
 |