123456789101112131415161718192021222324252627282930313233343536 |
- <view class="nav-blue">
- </view>
- <view class="coursel">
- <swiper class='indexSwiper' indicator-dots="{{indicatorDots}}" autoplay="{{autoplay}}" interval="{{interval}}"
- duration="{{duration}}" bindchange="swiperChange" circular='true'>
- <block wx:for="{{imgUrls}}" wx:key='index'>
- <swiper-item>
- <image src="{{item}}" class="slide-image" />
- </swiper-item>
- </block>
- </swiper>
- <view class="dots">
- <block wx:for="{{imgUrls}}" wx:key="unique">
- <view class="dot{{index == swiperCurrent ? ' active' : ''}}"></view>
- </block>
- </view>
- </view>
- <view>
- <i-cell-group>
- <i-cell wx:for="{{tableData}}"
- data-item="item"
- wx:key="postId"
- title="{{item.title}}"
- is-link
- url="/pages/post/post?postId={{item.postId}}"
- label="{{item.publishTime}}"
- />
- </i-cell-group>
- </view>
- <view wx:if="{{from==-1}}" style="text-align:center;margin-top:40rpx">
- <view class="padding">没有更多了</view>
- </view>
- <view class="cu-tabbar-height"> </view>
|