28 lines
1.0 KiB
Plaintext
28 lines
1.0 KiB
Plaintext
<!-- 轮播公告 -->
|
|
<view class="swiper-view">
|
|
<swiper class="swiper_container" vertical="true" autoplay="true" circular="true" interval="5000">
|
|
<block wx:for="{{msgList}}" wx:key="index">
|
|
<swiper-item>
|
|
<view class="swiper-title">{{item.title}}</view>
|
|
</swiper-item>
|
|
</block>
|
|
</swiper>
|
|
</view>
|
|
<!-- 顶部轮播图 -->
|
|
<view class="lunbotuBlock">
|
|
<swiper indicator-dots indicator-color="gray" indicator-active-color="white" circular autoplay interval="5000">
|
|
<swiper-item wx:for="{{lunboList}}" wx:key="id" class="lunbotuItem">
|
|
<image src="{{item.lunbotu_img}}"></image>
|
|
</swiper-item>
|
|
</swiper>
|
|
</view>
|
|
<!-- 新闻列表 -->
|
|
<block>
|
|
<view wx:for="{{list}}" class="newsItem" bindtap="gotoDetail" data-id="{{item._id}}" wx:key="index">
|
|
<view wx:if="{{news_image}}" data-id="{{item._id}}">
|
|
<image src="{{news_image}}"></image>
|
|
</view>
|
|
<view class="news_title">{{item.news_title}}</view>
|
|
<view class="news_date">{{item.news_date}}----------{{item.news_author}}</view>
|
|
</view>
|
|
</block> |