41 lines
2.3 KiB
Plaintext
41 lines
2.3 KiB
Plaintext
<view class="container" wx:if="{{show}}">
|
||
<view class="status-section" wx:if="{{isVip}}">
|
||
<view class="user-vip " style="position:relative;">
|
||
<image class="user-pic" src="/images/老师教师男人.png"></image>
|
||
<view style="width: 200px;text-align: left; color: rgb(253, 217, 10);font-weight: 800;">尊贵VIP</view>
|
||
</view>
|
||
<view class="right">
|
||
<view>开通时间:{{startTime}}</view>
|
||
<view>到期时间:{{endTime}}</view>
|
||
<button bindtap="open_button" class="renew-button small-button" data-price="{{cards[4].price}}" data-type="{{cards[4].type}}">续费</button>
|
||
</view>
|
||
</view>
|
||
<view class="recharge-options">
|
||
<text class="title">选择订阅套餐:</text>
|
||
<view bindtap="onRecharge" class="card" data-price="{{item.price}}" data-type="{{item.type}}" wx:for="{{cards}}" wx:key="index">
|
||
<image class="card-icon" src="https://file.guimiaokeji.com/VIP.png" wx:if="{{!isQuota}}"></image>
|
||
<image class="card-icon" src="../../images/积分.png" wx:if="{{isQuota}}"></image>
|
||
<view class="card-content">
|
||
<text class="card-title">{{item.title}}</text>
|
||
<view class="price-wrapper">
|
||
<text class="original-price">原价¥{{item.price*2}}</text>
|
||
<text class="current-price">限时¥{{item.price}}</text>
|
||
</view>
|
||
<view class='desc'>{{item.description}}</view>
|
||
</view>
|
||
<button bindtap="open_button" class="open-button" data-price="{{item.price}}" data-type="{{item.type}}" wx:if="{{selectedType===item.type}}">开通</button>
|
||
</view>
|
||
</view>
|
||
<view class="footer">
|
||
<text>成为会员,享受无限使用功能特权,体验更多专属内容!</text>
|
||
</view>
|
||
</view>
|
||
|
||
<view wx:if="{{showQrcodePopup}}" class="qrcode-popup-mask" bindtap="closeQrcodePopup">
|
||
<view class="qrcode-popup" catchtap="preventDefault">
|
||
<image src="../../images/qrcode_for_gh_e64390b2d04e_258.jpg" class="qrcode-img" show-menu-by-longpress="true"></image>
|
||
<view class="qrcode-tip">IOS此功能暂不可用。长按识别二维码,前往公众号获取更多额度</view>
|
||
<view class="qrcode-close-btn" bindtap="closeQrcodePopup">关闭</view>
|
||
</view>
|
||
</view>
|