|
123456789101112131415161718192021222324252627282930 |
- <!--pages/escrowAccount/balance/balance.wxml-->
- <view class="ns" id="top_ban" style="height:{{isIPX?'88px':'64px'}};">
- <image src="/image/apply/back.png" style="top:{{isIPX?'54px':'30px'}};" mode="widthFix" bindtap="back"></image>
- <text style="top:{{isIPX?'54px':'30px'}};">余额查询</text>
- </view>
- <view class="pure_top" style="top:{{isIPX?'88px':'64px'}};"></view>
-
- <view class="main-box" style="margin-top:{{isIPX?'100px':'75px'}};">
- <text>账户名称:<text class="hui">{{taccount.payee}}</text></text>
- <text>银行账号:<text class="hui">{{taccount.payeeAccount}}</text></text>
- <text>实时余额(元):<text class="hui">{{taccount.balance}}</text></text>
- <text>查询时间:<text class="hui">{{taccount.balanceTime}}</text></text>
- </view>
- <van-divider
- contentPosition="center"
- customStyle="color: #666666; border-color: #dddddd; font-size: 18px;"
- >
- 村账户余额信息
- </van-divider>
- <view class="main-box" style="margin-top: 10px;" wx:for="{{taccountList}}" wx:key="index">
- <view class="tit_box">
- <view class="title"><text class="tt">{{item.payee}}</text></view>
- <text class="zph">00001</text>
- <text class="ye">¥<text>{{item.balance}}</text></text>
- </view>
- <view class="tit_box text">
- <text>{{item.payeeAccount}}</text>
- <text>{{item.balanceTime}}</text>
- </view>
- </view>
|