邃芒智像相册
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

17 wiersze
891 B

  1. <!--pages/checkImg/checkImg.wxml-->
  2. <view class="name">{{title}}</view>
  3. <swiper class="imageList" current="{{ currentIndex }}" bindchange="swiperChanged">
  4. <swiper-item wx:for="{{ swiperList }}" wx:key="index">
  5. <image src="{{ item.image }}" mode="widthFix" bindtap="previewImage" data-image="{{ item.image }}" />
  6. </swiper-item>
  7. </swiper>
  8. <view class="indicator">
  9. <view class="{{ currentIndex == 0 ? 'active item' : 'item' }}" bindtap="switchImg" data-index="0"></view>
  10. <view class="{{ currentIndex == 1 ? 'active item' : 'item' }}" bindtap="switchImg" data-index="1"></view>
  11. <view class="{{ currentIndex == 2 ? 'active item' : 'item' }}" bindtap="switchImg" data-index="2"></view>
  12. <view class="{{ currentIndex == 3 ? 'active item' : 'item' }}" bindtap="switchImg" data-index="3"></view>
  13. </view>
  14. <button class="downloadImage" bindtap="downloadImage">保存到手机</button>