yuminge-app/yun-min-program-plugin-master/packageB/member/handWithdraw/handWithdraw.wxml

38 lines
1.4 KiB
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.

<view class="hand-withdraw">
<view class="content">
<view class="address_box" catchtap="show1btn">
<view class="iconfont icon-info_position"></view>
<view class="p" style="-webkit-box-orient: vertical;">{{address}}</view>
<icon class="fa fa-angle-right"></icon>
</view>
<view class="transfer_box">
<view class="ul transfer_info">
<view class="li info_b">
<view class="span">可提现的{{integral_name}}</view>
<view class="span">{{member_integral}}</view>
</view>
</view>
<view class="transfer_sum">
<view class="span">提现金额</view>
<view class="sum">
<input type="tel" value="{{cash}}" placeholder="0.0" bind:input="cashBtn" />
</view>
</view>
</view>
<view class="button transfer_btn" catchtap="sureCash">确认提现</view>
<van-popup show="{{show1}}" position="bottom" custom-style="height:60%;overflow: auto;" bind:close="onClose">
<view class="select_address">
<view class="ul select_box">
<van-radio-group value="{{ radio }}" bind:change="onChange">
<view class="li" wx:for="{{addressData}}" wx:key="index">
<view class="p">{{item.address}}</view>
<van-radio :name="item.id" checked-color="#f15353" data-item="{{item}}" catchtap="selectAddress"></van-radio>
</view>
</van-radio-group>
</view>
<view class="button address_btn" catchtap="toAdd">新增提出地址</view>
</view>
</van-popup>
</view>
</view>