yuminge-app/yun-min-program-plugin-master/packageI/independenceBalance/storeBalance/balance_recharge.wxml

82 lines
3.2 KiB
Plaintext

<!--pages/balance_recharge/balance_recharge.wxml-->
<!-- 门店余额充值新页面 -->
<view id="balance_recharge" wx:if="{{!popshow}}">
<view class="storeUser" wx:if='{{info.store}}'>
<view class="storeImg">
<image src="{{info.store.thumb}}"></image>
</view>
<view class="storeName">{{info.store.store_name}}</view>
</view>
<view class="moneyInp">
<!-- <input type="number" disabled value="{{payMuch}}" placeholder="充值金额" class="smallInp" /> -->
<view class="smallInp">充值金额</view>
<view class="small">¥
<text>{{payMuch?payMuch:0}}</text>
</view>
</view>
<view class="current">当前余额:{{credit2}}元</view>
<view class="rechargeMethod" wx:if="{{!is_open_recharge_order}}">
<view class="methodTxt">充值方式</view>
<view class="methodBox">
<van-radio-group value="{{radio}}" bind:change="selectSpecs">
<view class="li" wx:for="{{buttons}}" wx:for-item='btn' wx:key="i">
<view class="lis">
<icon class="iconfont {{btn.btclass?btn.btclass:''}}"></icon>
{{ btn.name }}{{ typename }}
</view>
<van-radio name="{{btn.value}}" checked-color="#ee0a24"></van-radio>
</view>
</van-radio-group>
</view>
</view>
<view class="activityBox" wx:if="{{show_activity}}">
<view class="activityTxt">活动说明</view>
<view class="activityConten">
<rich-text nodes="{{activatDes.control}}"></rich-text>
</view>
</view>
<view class="btn">
<view class="ul btn_box">
<view class="li line_one">
<view class="button" catchtap="_handleKeyPress" data-num="1">1</view>
<view class="button" catchtap="_handleKeyPress" data-num="2">2</view>
<view class="button" catchtap="_handleKeyPress" data-num="3">3</view>
<view class="button" catchtap="_handleKeyPress" data-num="D">
<icon class="iconfont icon-seller-del"></icon>
</view>
</view>
<view class="li btn_bottom">
<view class="ul line_two_1">
<view class="li line-left">
<view class="ul line_box">
<view class="li line_two">
<view class="button" catchtap="_handleKeyPress" data-num="4">4</view>
<view class="button" catchtap="_handleKeyPress" data-num="5">5</view>
<view class="button" catchtap="_handleKeyPress" data-num="6">6</view>
</view>
<view class="li line_three">
<view class="button" catchtap="_handleKeyPress" data-num="7">7</view>
<view class="button" catchtap="_handleKeyPress" data-num="8">8</view>
<view class="button" catchtap="_handleKeyPress" data-num="9">9</view>
</view>
<view class="li line_four">
<view class="button"></view>
<view class="button" catchtap="_handleKeyPress" data-num="0">0</view>
<view class="button" catchtap="_handleKeyPress" data-num=".">
<view class="span">.</view>
</view>
</view>
</view>
</view>
<view class="li line-right">
<view class="button" catchtap="_handleKeyPress" data-num="S">
<view class="top">立即</view>
<view class="bottom">充值</view>
</view>
</view>
</view>
</view>
</view>
</view>
</view>
<order_popup wx:if="{{popshow}}" bindshowOff="showOffMethod" show1="{{popshow}}" store_id="{{store_id}}" payMuch="{{payMuch}}"></order_popup>