微信小程序
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.9 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 class="add_btn" bindtap="goAdd">
  16. <van-checkbox value="{{ checked }}" shape="square" bind:change="onChange">
  17. 仅显示失效
  18. </van-checkbox>
  19. </view>
  20. </view>
  21. <view class="main">
  22. <van-collapse accordion value="{{ activeName }}" bind:change="onChange" custom-class="list">
  23. <van-collapse-item title="{{ item.payee }}" name="{{index}}" wx:for="{{list}}" wx:key="index">
  24. <view slot="value">
  25. <text class="money">¥{{ item.incomeAmount }}</text>
  26. </view>
  27. <view class="detailBox">
  28. <van-cell border="{{ false }}" >
  29. <view slot="title">
  30. {{ item.payee }}<van-tag plain type="danger" color="#5CAE77" round style="margin-left:10px;">收款方</van-tag>
  31. </view>
  32. </van-cell>
  33. <van-cell title="收款账户" value="{{ item.payeeAccount }}" border="{{ false }}" />
  34. <van-cell title="开户银行" value="{{ item.bankDeposit }}" border="{{ false }}" />
  35. <van-cell title="收入金额" value="{{ item.incomeAmount }}" border="{{ false }}" />
  36. <van-cell title="所属银行" value="{{ item.bankTypeText }}" border="{{ false }}" />
  37. <!-- <van-cell title="转账状态" value="6217002190007972186" border="{{ false }}" />
  38. <van-cell title="交易结果" value="6217002190007972186" border="{{ false }}" /> -->
  39. </view>
  40. </van-collapse-item>
  41. </van-collapse>
  42. </view>