yuminge-app/yun-min-program-plugin-master/packageH/credit_value/recharge/recharge.wxml

20 lines
879 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!-- packageH/credit_value/recharge/recharge.wxml -->
<view class="recharge-panel">
<!-- <view class="balance">当前余额1.00</view> -->
<view class="recharge-count">
<view class="recharge-count-title">充值数量</view>
<view class="recharge-count-input">
<input type="digit" placeholder="0" bind:input="inputRechargeCount" />
</view>
<!-- <view class="recharge-example">例如人民币0.01元等于3个爱心值</view> -->
</view>
</view>
<view class="recharge-panel">
<view class="recharge-methods-title">充值方式</view>
<view class="recharge-method-list">
<view class="recharge-method-item" wx:for="{{ payMethods }}" wx:key="{{ item.value }}" bind:tap="payFee" data-type="{{ item.value }}">
<text class="recharge-method-icon iconfont {{ item._iconClassName }}"></text>
{{ item.name }}
</view>
</view>
</view>