微信小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.8 KiB

  1. <!--pages/pay/payee/payee.wxml-->
  2. <view class="ns" 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="search_box" style="margin-top:{{isIPX?'100px':'75px'}};">
  7. <van-search
  8. value="{{ value }}"
  9. shape="round"
  10. background="transparent"
  11. placeholder="请输入收款方"
  12. clearable
  13. bind:change="goSearch"
  14. />
  15. </view> -->
  16. <view class="main" style="margin-top:{{isIPX?'100px':'75px'}};">
  17. <van-collapse accordion value="{{ activeName }}" bind:change="onChange" custom-class="list">
  18. <van-collapse-item title="{{ item.payee }}" name="{{index}}" wx:for="{{list}}" wx:key="index">
  19. <view slot="value">
  20. <text class="money">¥{{ item.incomeAmount }}</text>
  21. </view>
  22. <view class="detailBox">
  23. <van-cell border="{{ false }}" >
  24. <view slot="title">
  25. {{ item.payee }}<van-tag plain type="danger" color="#5CAE77" round style="margin-left:10px;">收款方</van-tag>
  26. </view>
  27. </van-cell>
  28. <van-cell title="收款账户" value="{{ item.payeeAccount }}" border="{{ false }}" />
  29. <van-cell title="开户银行" value="{{ item.bankDeposit }}" border="{{ false }}" />
  30. <van-cell title="收入金额" value="{{ item.incomeAmount }}" border="{{ false }}" />
  31. <van-cell title="所属银行" value="{{ item.bankTypeText }}" border="{{ false }}" />
  32. <!-- <van-cell title="转账状态" value="6217002190007972186" border="{{ false }}" />
  33. <van-cell title="交易结果" value="6217002190007972186" border="{{ false }}" /> -->
  34. </view>
  35. </van-collapse-item>
  36. </van-collapse>
  37. </view>