You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
655 B

5 years ago
<!--pages/info/guideInfo/index.wxml-->
<wxs src="../../../utils/filter.wxs" module="tool" />
<!-- <title title="详情"></title> -->
<view class="info">
<swiper bindchange="changePage" current="{{page}}">
<swiper-item wx:for="{{images}}" class="img-box">
<image lazy-load bindtap="showImg" data-img="{{item}}" src="{{item}}?x-oss-process=image/resize,w_750,m_lfit" mode="aspectFit"></image>
5 years ago
</swiper-item>
</swiper>
<view class="pages">
<view class="btn" bindtap="prevPage">上一页</view>
<view class="pagenum"> {{page+1}} / {{images.length}}</view>
<view class="btn" bindtap="nextPage">下一页</view>
</view>
</view>