Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- <!--pages/scout/share/share.wxml-->
- <view class="showView">
- <view class="posterBox">
- <swiper current="{{posterIndex}}" bindchange="changePoster" previous-margin="134rpx" next-margin="134rpx">
- <block wx:for="{{posterList}}" wx:key="*this">
- <swiper-item>
- <view class="posterContent">
- <view class="selectFrame posterItem">
- <image class="poster" src="{{imgUrl+'/star/scout/share/'+item+'.png'}}" mode="aspectFill"></image>
- </view>
- <view class="selectFrame" wx:if="{{posterIndex==index}}">
- <image class="ok" src="{{imgUrl+'/star/scout/share/ok.png'}}"></image>
- </view>
- </view>
- </swiper-item>
- </block>
- </swiper>
- <image class="arrowBtn" style="left:20rpx;" src="{{imgUrl+'/star/scout/share/arrowLeft.png'}}" bindtap="prevPoster" wx:if="{{posterIndex!=0}}"></image>
- <image class="arrowBtn" style="right:20rpx;" src="{{imgUrl+'/star/scout/share/arrowRight.png'}}" bindtap="nextPoster" wx:if="{{posterIndex!=posterList.length-1}}"></image>
- </view>
- <image class="enlarge" src="{{imgUrl+'/star/scout/share/enlarge.png'}}" bindtap="bigPoster"></image>
- <view class="enlargeTxt">查看大图</view>
- <image class="tip" src="{{imgUrl+'/star/scout/share/tip.png'}}"></image>
- <view class="bottomBox">
- <image style="width:100%;height:100%;" src="{{imgUrl+'/star/scout/share/bgBottom.jpg'}}"></image>
- <view class="btnBox">
- <view class="btnItem">
- <image class="btn" src="{{imgUrl+'/star/scout/share/down.png'}}" bindlongtap="savePoster"></image>
- <view class="btnTxt">长按保存到手机</view>
- </view>
- <view class="btnItem">
- <image class="btn" src="{{imgUrl+'/star/scout/share/share.png'}}" bindtap="sharePoster"></image>
- <view class="btnTxt">分享给好友</view>
- </view>
- </view>
- </view>
- </view>
- <tabBar></tabBar>
|