2024-02-21 17:43:11 +08:00

25 lines
1.0 KiB
Plaintext

<view class="page">
<scroll-view scroll-y="true" class="contenBox">
<swiper class='swiper-box' indicator-dots="{{indicatorDots}}" autoplay="{{autoplay}}" interval="{{interval}}"
duration="{{duration}}" circular='true' style='height:{{Height}}' wx:if="{{bannerList.length > 0}}">
<block wx:for="{{ bannerList }}" wx:key='index'>
<swiper-item bindtap="navdetail" data-index="{{index}}">
<view>
<image class="slide-image" src="{{ DOMAIN_NAME+item.bannerImg }}" bindload='imgHeight' mode='widthFix'></image>
</view>
</swiper-item>
</block>
</swiper>
<view style="margin-top:20rpx;">
<view class="noticeBox" wx:for="{{noticeList}}" wx:key='index' bindtap="navdetaillist" data-index="{{index}}">
<view style="font-size:30rpx;margin-bottom:26rpx;">
<text>{{item.djName}}</text>
</view>
<view class="textcolor">
<text>发布时间:</text>
<text>{{item.marketableTime}}</text>
</view>
</view>
</view>
</scroll-view>
</view>