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

58 lines
2.1 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="love_transfer">
<!-- 优化 -->
<view class="content">
<view class="transfer_info ul">
<view class="info_a li">
<text class="span">激活{{ love_name }}</text>
<text class="span">{{ usable }}</text>
</view>
<view class="info_b li">
<text class="span">会员ID</text>
<van-field style="width: 430rpx;" type="number" value="{{ recharge_search }}" placeholder="请输入受让人ID" border="{{ false }}"
bind:input="searchTransfer" bind:change="onChange2" />
<icon class="iconfont icon-sousuo1" catchtap="searchTransfer_1"></icon>
</view>
</view>
<view class="transfer_sum">
<text class='span'>{{ love_name }}</text>
<view class="sum">
{{language['money']}}
<van-field value="{{ recharge_value }}" placeholder="0.00" border="{{ false }}" bind:change="onChange" />
</view>
</view>
<view class="personal_info" wx:if="{{showSearch}}">
<view wx:if="{{memberInfo.nickname}}">
<text>会员昵称:</text>
<text>{{ memberInfo.nickname }}</text>
</view>
<view wx:if="{{memberInfo.realname}}">
<text>会员姓名:</text>
<text>{{ memberInfo.realname }}</text>
</view>
</view>
<!-- <view class="search_list" wx:if="{{showSearch}}">
<view class="list ul" wx:for="{{search_list}}" wx:key="index">
<view class="li" catchtap="makeTransfer" data-name="{{item.nickname}}" data-jid="{{item.id}}">
{{ item.nickname }}
</view>
</view>
</view> -->
<button type="button" class="btn custom_color" catchtap="getBalance">
确认{{key != 'donate'?'转账':'转赠'}}
</button>
<view class="notes p" wx:if="{{key != 'donate'}}">
<view>
注:转账{{ love_name }}不能小于{{ transfer_fetter }}, 且为{{
transfer_multiple
}}的整数倍。</view>
<view> 转让手续费比率为{{ ratio }}% </view>
<view> 您实际转账到数为:{{ actualVal}} </view>
</view>
</view>
<!-- 模糊搜索 -->
</view>
<pay-keyboard show="{{payKeyboardShow}}" wx:if="{{payKeyboardShow}}" bindclose="payKeyboardClose" bindcomplete="payKeyboardComplete"></pay-keyboard>