1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <!-- tabbar--Home -->
- <view style="padding-bottom:{{safeAreaBottom+140}}rpx;">
- <!-- 轮播图 -->
- <swiper class="home_banner" autoplay circular indicator-dots indicator-color="#CCCCCC" indicator-active-color="#FFFFFF">
- <swiper-item class="home_banner_item" wx:for="{{bannerList}}" wx:key="{{item.id}}">
- <image src="{{item.url}}" mode="aspectFill"></image>
- </swiper-item>
- </swiper>
- <!-- 功能导航区 -->
- <van-grid class="home_nav" icon-size="55" border="{{ false }}">
- <van-grid-item icon-class="home_nav_icon" custom-class="home_nav_item" text-class="home_nav_item_text" wx:for="{{homeNavList}}" wx:key="{{item.id}}" icon="{{item.url}}" text="{{item.text}}" />
- </van-grid>
- <!-- 通告 -->
- <My_inform_box title="通告" Rbut="查看全部" showIcon marginTop='15' :RbutClick="RbutClick">
- <My_inform_item wx:for="{{3}}"></My_inform_item>
- </My_inform_box>
- <!-- 展会实况 -->
- <My_RealTime_display></My_RealTime_display>
- <!-- 经营数据 -->
- <My_inform_box title="经营数据" botBorder titleImg="/static/icon-1.png">
- <My_operation></My_operation>
- </My_inform_box>
- <!-- 推广数据 -->
- <My_inform_box title="推广数据" botBorder titleImg="/static/icon-2.png" marginTop="0">
- <My_operation></My_operation>
- </My_inform_box>
- <!-- 合作商家 -->
- <My_inform_box title="合作商家" Rbut="查看全部" showIcon marginTop='15' :RbutClick="RbutClick">
- <swiper class="store" indicator-dots indicator-color="#E4E4E4" indicator-active-color="#999999" autoplay circular>
- <swiper-item>
- <view class="store_list">
- <view class="store_item" wx:for="{{6}}">
- <van-image width="100%" height="90" lazy-load src="/static/store_list/icon-1.jpg" />
- <view class="store_item_type u-line-1">家纺1111111111111111</view>
- <view class="store_item_explain u-line-1">高档窗帘1111111111111111</view>
- </view>
- </view>
- </swiper-item>
- <swiper-item>
- <view class="store_list">
- <view class="store_item" wx:for="{{6}}">
- <van-image width="100%" height="90" lazy-load src="/static/store_list/icon-2.jpg" />
- <view class="store_item_type">家纺</view>
- <view class="store_item_explain">高档窗帘</view>
- </view>
- </view>
- </swiper-item>
- <swiper-item>
- <view class="store_list">
- <view class="store_item" wx:for="{{6}}">
- <van-image width="100%" height="90" lazy-load src="/static/store_list/icon-3.jpg" />
- <view class="store_item_type">家纺</view>
- <view class="store_item_explain">高档窗帘</view>
- </view>
- </view>
- </swiper-item>
- </swiper>
- </My_inform_box>
- </view>
|