You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.2 KiB
32 lines
1.2 KiB
<view class="content">
|
|
<view class="prompt_view">
|
|
<view class="image_upload_title">
|
|
<view class="vb"></view>
|
|
<view class="text">充值套餐</view>
|
|
</view>
|
|
|
|
<view class="itmes_view">
|
|
<view class="itme_view {{selectedIndex == index ? 'itme_view_active' : ''}}" wx:for="{{items}}" wx:key="index" data-index="{{index}}" bind:tap="onItemTap">
|
|
<view class="yuan {{selectedIndex == index ? 'yuan_active' : ''}}">
|
|
¥
|
|
</view>
|
|
<view class="money {{selectedIndex == index ? 'money_active' : ''}}">
|
|
{{item.money}} 元
|
|
</view>
|
|
<view class="bean {{selectedIndex == index ? 'bean_active' : ''}}">
|
|
<image src="/static/images/jd.png" style="width: 12px;height: 12px;"></image>
|
|
{{item.jd_count}} 金豆
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
</view>
|
|
<view class="generate-bottom">
|
|
<view class="make_button" bind:tap="payHandle">
|
|
确认协议并支付 ¥{{selectmoney}}元
|
|
</view>
|
|
<view class="agree">
|
|
支付前请阅读 <text class="agreeText" bind:tap="agreeHandle">《支付协议》</text>
|
|
</view>
|
|
</view>
|
|
</view> |