1234567891011121314151617 |
- <view class="vip">
- <view class="greenHolder"></view>
- <view class="productItem">
- <image class="productBg" src="../../../static/vip/product_bg.png" />
- <view class="productContent">
- <image class="discountIcon" src="../../../static/vip/discount.png" />
- <text class="timeLength">12个月会员</text>
- <view class="price">
- <text class="priceIcon">¥</text>
- <text>{{price}}</text>
- </view>
- <text class="originPrice">{{bottomText}}</text>
- </view>
- </view>
- <view class="buyBtn" bindtap="createOrder">{{isVIP? '续费' : '立即开通'}}</view>
- <myModal id="myModal" type="{{modalType}}" isCloseShow="{{false}}" wx:if="{{isModalShow}}" bindconfirm="modalConfirmHandler" />
- </view>
|