|
@@ -0,0 +1,21 @@
|
|
|
+<view class="sharePopup" wx:if="{{showDialog}}">
|
|
|
+ <view class="shareDialog">
|
|
|
+ <image src="../../../image/share_bg.png" class="share_bg"></image>
|
|
|
+ <image src="../../../image/close_icon.png" class="close_icon" bindtap="onCloseDialog"></image>
|
|
|
+ <view class="shareInfo">
|
|
|
+ <view class="shareInfo___top">邀请5位好友,可以优惠50元</view>
|
|
|
+ <view class="shareInfo___bottom">还有<text class="num">4</text>位好友待邀请</view>
|
|
|
+ </view>
|
|
|
+ <view class="shareList">
|
|
|
+ <block wx:for="{{5}}" wx:key="index">
|
|
|
+ <view class="shareItem">
|
|
|
+ <image src="../../../image/user_placeholder.png" class="user_placeholder"></image>
|
|
|
+ <view class="shareName">补贴{{3+index}}元</view>
|
|
|
+ </view>
|
|
|
+ </block>
|
|
|
+ </view>
|
|
|
+ <view class="btn-rechargeNow">
|
|
|
+ <text>去邀请好友</text>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+</view>
|