| 1234567891011121314151617181920212223242526272829303132333435363738 | <view style="width: 1rpx;height: {{capsule.top-6+'px'}};" /><view class="header" /><!-- 自定义nav --><view style="position: fixed;top: 0; z-index: 999999999;">    <view style="width: 100vw;height: {{capsule.top-6+'px'}};background-color:#085CDF;" />    <view class="header">        <navigator url="/pages/login/selectSite" open-type="reLaunch" class="header_title">            {{user.sitename}}            <van-icon name="arrow-down" />        </navigator>    </view></view><!-- 滚动通知 --><van-notice-bar custom-class='notice-bar' mode="link" background="none" data-item="{{notice}}" background='#FCF6EF' color='#666' text="{{notice.message}}"  bindtap="toMsg">    <text slot="left-icon" data-item="{{notice}}" class="work work-xiaoxigundong" /></van-notice-bar><!-- 轮播区域 --><swiper class='banner' wx:if="{{bannerList.length}}" autoplay circular>    <swiper-item wx:for="{{bannerList}}" wx:key="index">        <image src="{{item.attinfos[0].url}}" mode="aspectFill" data-item="{{item}}" catchtap="bannerClick" />    </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.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;" />
 |