sureload.wxml
1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<view class="register" wx:if="{{download}}" bindtap="download">
<view class='setlogolwrap'>
<view class="savelogol">
<view class='savesuccess begin'>图片已保存至相册</view>
<view class="gosee" bindtap='finishload'>确定</view>
</view>
</view>
</view>
<view class="swiper_image">
<swiper indicator-dots="{{indicatorDots}}" autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}" class="swiper_item_img" data-idx="{{index}}" bindchange="swiperChange">
<block wx:for="{{imgUrls}}" wx:key="doct">
<swiper-item>
<image src="{{item}}" class="slide-image" width="355" height="150" />
<view class="headlogolimg">
<image src="{{headlogolurl}}"></image>
</view>
</swiper-item>
</block>
</swiper>
<view class="dots">
<block wx:for="{{imgUrls}}" wx:key="">
<view class="dot{{index == currentSwiper ? ' active' : ''}}"></view>
</block>
</view>
</view>
<view class="previewbottom">
<view class="downandsave" bindtap="savedowm" wx:if="{{hidedown}}">下载并保存</view>
<button class="downandsave" bindtap="downset" bindopensetting="downset" wx:else>下载并保存</button>
</view>