123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <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}}">
- <text slot="left-icon" data-item="{{notice}}" class="iconfont icon-xiaoxigundong" />
- </van-notice-bar>
- <!-- 轮播区域 -->
- <swiper class='banner' 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">
- <view class="grld-title">
- <text class="iconfont icon-E-dingdanxitong" /> <text class="content">E-订单</text>
- </view>
- <Yl_ListBox id='ListBox' pullDown='{{false}}'>
- <view class="main">
- <navigator url="{{item.path}}" class="item" wx:for="{{gridList}}" wx:key="name">
- <view class="icon-box" style="background-color: {{item.bColor}};">
- <text class="iconfont {{item.icon}}" style="color: {{item.color}};" />
- </view>
- <view class="name line-1">
- {{item.name}}
- </view>
- </navigator>
- </view>
- <view style="height: 140rpx;" />
- </Yl_ListBox>
- </view>
|