微信小程序
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

balance.wxml 1.3 KiB

123456789101112131415161718192021222324252627282930
  1. <!--pages/escrowAccount/balance/balance.wxml-->
  2. <view class="ns" id="top_ban" style="height:{{isIPX?'88px':'64px'}};">
  3. <image src="/image/apply/back.png" style="top:{{isIPX?'54px':'30px'}};" mode="widthFix" bindtap="back"></image>
  4. <text style="top:{{isIPX?'54px':'30px'}};">余额查询</text>
  5. </view>
  6. <view class="pure_top" style="top:{{isIPX?'88px':'64px'}};"></view>
  7. <view class="main-box" style="margin-top:{{isIPX?'100px':'75px'}};">
  8. <text>账户名称:<text class="hui">{{taccount.payee}}</text></text>
  9. <text>银行账号:<text class="hui">{{taccount.payeeAccount}}</text></text>
  10. <text>实时余额(元):<text class="hui">{{taccount.balance}}</text></text>
  11. <text>查询时间:<text class="hui">{{taccount.balanceTime}}</text></text>
  12. </view>
  13. <van-divider
  14. contentPosition="center"
  15. customStyle="color: #666666; border-color: #dddddd; font-size: 18px;"
  16. >
  17. 村账户余额信息
  18. </van-divider>
  19. <view class="main-box" style="margin-top: 10px;" wx:for="{{taccountList}}" wx:key="index">
  20. <view class="tit_box">
  21. <view class="title"><text class="tt">{{item.payee}}</text></view>
  22. <text class="zph">00001</text>
  23. <text class="ye">¥<text>{{item.balance}}</text></text>
  24. </view>
  25. <view class="tit_box text">
  26. <text>{{item.payeeAccount}}</text>
  27. <text>{{item.balanceTime}}</text>
  28. </view>
  29. </view>