Files
HnyhuaXCX/pages/zhuanzhang/index.wxml

60 lines
1.9 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="container">
<view class="mydata-box">
<view class="frombody">
<form bindsubmit='withdrawal'>
<view>
<text>对方账号:</text><input name="username" bindblur='getnameValue' placeholder="请填写您要转账的用户名" type="text" value="" />
</view>
<view>
<text>对方姓名:</text><view>{{xmname}}</view>
</view>
<view class="umoney">
<text>{{title}}</text>{{umoney}}
</view>
<view>
<text>转账数量:</text><input name="txje" type="text" placeholder="请填写您要转账的数量" value="" />
</view>
<view>
<text>安全密码:</text><input name="txpwd" type="text" value="" placeholder="请填写您的安全密码" type="password" />
</view>
<view class="button">
<button form-type="submit" class="{{savedisable}}">{{savebutton}}</button>
</view>
</form>
</view>
</view>
<view class="mybalance-box">
<view class="text">
<view class="line_flag"></view>
<text>转账记录</text>
</view>
<view class="mybalance-item" wx:for="{{mybalance}}" wx:for-index="index">
<view class="Total">
<view><text>转账金额:</text>{{item.Totalmoney}}</view>
<view class="right"><text>转账账号:</text>{{item.UserName}}</view>
</view>
<view class="Total0">
<view><text>时间:</text>{{item.addtime}}</view>
</view>
<view>
</view>
</view>
</view>
</view>
<loading hidden="{{loadingHidden}}">
加载中...
</loading>