Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- <!--pages/checkImg/checkImg.wxml-->
- <view class="name">{{title}}</view>
-
- <swiper class="imageList" current="{{ currentIndex }}" bindchange="swiperChanged">
- <swiper-item wx:for="{{ swiperList }}" wx:key="index">
- <image src="{{ item.image }}" mode="widthFix" bindtap="previewImage" data-image="{{ item.image }}" />
- </swiper-item>
- </swiper>
-
- <view class="indicator">
- <view wx:for="{{ swiperList }}" wx:key="index" class="{{ currentIndex == index ? 'active item' : 'item' }}" bindtap="switchImg" data-index="{{index}}"></view>
- </view>
-
- <button class="downloadImage" bindtap="downloadImage">保存到手机</button>
|