44 lines
1.0 KiB
Plaintext
44 lines
1.0 KiB
Plaintext
<!--packageI/newMedia/newMediaRechange/newMediaRechange.wxml-->
|
||
|
||
|
||
<view class="wrapper">
|
||
<view class="surplus">
|
||
当前流量值:{{details.stream}}
|
||
</view>
|
||
<view class="exchange">
|
||
<view class="explain">
|
||
<text>充值流量值数量</text>
|
||
</view>
|
||
<view class="input">
|
||
<input type="number" placeholder="0" bindinput="setPrice" model:value="{{quantity}}" />
|
||
</view>
|
||
<view class="desc">注:1流量值等于人民币{{details.stream_eq_money}}元</view>
|
||
<view class="payPrice" wx:if="{{price>0}}">需要支付{{price}}元</view>
|
||
</view>
|
||
</view>
|
||
|
||
|
||
<view class="recharge_way">
|
||
<view class="h1">充值方式</view>
|
||
<view class="ul choose_box">
|
||
|
||
<view class="li" data-item="{{item}}" bindtap="getPaySn" wx:for="{{buttons}}">
|
||
<icon class="iconfont {{item.class}}"> </icon>
|
||
{{item.name}}
|
||
</view>
|
||
|
||
</view>
|
||
</view>
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
<pay-keyboard show="{{popupSpecs}}" wx:if="{{popupSpecs}}" bindclose="payKeyboardClose" bindcomplete="payKeyboardComplete"></pay-keyboard>
|
||
|
||
|
||
|
||
|