vip.wxml 805 B

1234567891011121314151617
  1. <view class="vip">
  2. <view class="greenHolder"></view>
  3. <view class="productItem">
  4. <image class="productBg" src="../../../static/vip/product_bg.png" />
  5. <view class="productContent">
  6. <image class="discountIcon" src="../../../static/vip/discount.png" />
  7. <text class="timeLength">12个月会员</text>
  8. <view class="price">
  9. <text class="priceIcon">¥</text>
  10. <text>{{price}}</text>
  11. </view>
  12. <text class="originPrice">{{bottomText}}</text>
  13. </view>
  14. </view>
  15. <view class="buyBtn" bindtap="createOrder">{{isVIP? '续费' : '立即开通'}}</view>
  16. <myModal id="myModal" type="{{modalType}}" isCloseShow="{{false}}" wx:if="{{isModalShow}}" bindconfirm="modalConfirmHandler" />
  17. </view>