12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <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>
- <!-- <ad unit-id="adunit-7cfbe6afa1f6b0d3"></ad> -->
- <!-- <view class="f-header m-t">
- <image src="/assets/h1.png"></image>
- <view class="tit-box">
- <text class="tit">业务选择</text>
- <text class="tit2">items</text>
- </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>
|