| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 | <!-- banner --><view class="homeBanner">    <swiper class="swiperBanner" autoplay indicator-dots circular="true" indicator-active-color="#fff">        <swiper-item wx:for="{{swiperBannerList}}" wx:key="index">            <image src="{{item.url}}" mode="aspectFill"></image>        </swiper-item>    </swiper></view><!-- 数据展示 --><view class="data-display">    <view>        <view class="data-display-title">展示商</view>        <view class="data-display-num">1326</view>    </view>    <view>        <view class="data-display-title">正在直播</view>        <view class="data-display-num">1326</view>    </view><view>        <view class="data-display-title">观众人数</view>        <view class="data-display-num">1326854</view>    </view></view><My_DisplayBox title="云展会直播大厅" isMore="{{false}}">    <!-- 标题前图片 -->    <image slot="display-box-img" class="display-title_image" src="/static/icon-06.png" mode="aspectFit"></image>    <swiper class="exhibition-swiper" autoplay indicator-dots circular="true" indicator-active-color="#fff">        <swiper-item wx:for="{{3}}" class="exhibition-swiper-item">            <view wx:for="{{4}}" class="exhibition">                <image class="exhibition-img" src="/static/changeImg.png" mode="aspectFill" ></image>                <view class="exhibition-bottom">                    <view class="exhibition-bottom-title">65421</view>                    <view class="exhibition-bottom-data">185</view>                </view>            </view>        </swiper-item>    </swiper></My_DisplayBox><My_DisplayBox title="热门展商" isMore="{{false}}">    <!-- 标题前图片 -->    <image slot="display-box-img" class="display-title_image" src="/static/icon-04.png" mode="aspectFit"></image>    <swiper class="exhibition-swiper" autoplay indicator-dots circular="true" indicator-active-color="#fff">        <swiper-item wx:for="{{3}}" class="exhibition-swiper-item">            <view wx:for="{{4}}" class="exhibition">                <image class="exhibition-img" src="/static/changeImg.png" mode="aspectFill" ></image>                <view class="exhibition-bottom">                    <view class="exhibition-bottom-title">65421</view>                    <view class="exhibition-bottom-data">185</view>                </view>            </view>        </swiper-item>    </swiper></My_DisplayBox><My_DisplayBox title="热门商品" isMore="{{false}}">    <!-- 标题前图片 -->    <image slot="display-box-img" class="display-title_image" src="/static/icon-04.png" mode="aspectFit"></image>    <My_VerticalBox></My_VerticalBox>    <view style="height: 10rpx;"></view>    <My_VerticalBox></My_VerticalBox>    <view style="height: 10rpx;"></view></My_DisplayBox>
 |