Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- <!--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>
|