mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-21 22:29:36 +08:00
25 lines
1.0 KiB
Plaintext
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:0rpx;">
|
||
|
<view class="noticeBox" wx:for="{{noticeList}}" wx:key='index' bindtap="navdetaillist" data-index="{{index}}">
|
||
|
<view style="font-size:30rpx;margin-bottom:26rpx;">
|
||
|
<text>{{item.name}}</text>
|
||
|
</view>
|
||
|
<view class="textcolor">
|
||
|
<text>发布时间:</text>
|
||
|
<text>{{item.marketableTime}}</text>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</scroll-view>
|
||
|
</view>
|