微信小程序
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.

index.wxml 4.0 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <!--pages/apply/index.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. <!-- 付款单位开始 -->
  7. <view class="top" style="margin-top:{{isIPX?'100px':'75px'}};">
  8. <image src="../../image/apply/dress_icon.png" mode="widthFix"></image>
  9. <view class="top-tit">付款单位</view>
  10. <view class="top-title">{{bookName}}</view>
  11. </view>
  12. <view class="main">
  13. <van-tabs sticky color="#000">
  14. <van-tab title="银行账户">
  15. <view class="bank_box" wx:for="{{accountList}}" wx:key="index">
  16. <text class="zt">一般户</text>
  17. <image src="../../image/apply/bgt.png" style="width: 100%;position: absolute;top:0;right:0;z-index: 9;height: 100%;"></image>
  18. <view class="bank_content {{item.bankType == 1 ? 'ICBC':item.bankType == 2 ? 'RCB':item.bankType == 3 ? 'ABC':item.bankType == 4 ? 'CCB':''}}">
  19. <view class="bankName">
  20. <image src="../../image/apply/{{item.bankType == 1 ? 'ICBC':item.bankType == 2 ? 'RCB':item.bankType == 3 ? 'ABC':item.bankType == 4 ? 'CCB':''}}.png" style="width: 25px" mode="widthFix"></image>
  21. <text>{{item.bankType == 1 ? '中国银行':item.bankType == 2 ? '农商行(山东省)':item.bankType == 3 ? '农业银行':item.bankType == 4 ? '建设银行':''}}</text>
  22. </view>
  23. <view style="margin-top: 2vh;">{{item.bankAccountNumber}}<text>卡号</text></view>
  24. <view>可用余额</view>
  25. <view style="font-weight: bold;font-size: 22px;margin-top: 2vh;">{{item.balance}}</view>
  26. </view>
  27. </view>
  28. <van-empty wx:if="{{accountList.length == 0}}" description="暂无银行账户" />
  29. </van-tab>
  30. <van-tab title="公务卡">
  31. <view class="bank_box">
  32. <view class="bank_content gwk">
  33. <image src="../../image/apply/gwk_icon.png" style="width: 28%;" mode="widthFix"></image>
  34. <view style="margin-bottom: 2vh;">6217 0021 9000 7972 186<text>卡号</text></view>
  35. <view>可用余额</view>
  36. <view style="font-weight: bold;font-size: 22px;margin-top: 2vh;">10,288.83</view>
  37. </view>
  38. <view class="holder">持有人:王强</view>
  39. </view>
  40. <!-- <van-empty wx:if="{{accountList.length == 0}}" description="暂无银行账户" /> -->
  41. </van-tab>
  42. </van-tabs>
  43. </view>
  44. <view class="bottom">
  45. <view class="btn1" bindtap="openBox">支付模板</view>
  46. <view class="btn2" bindtap="swichPaymentApply">下一步</view>
  47. </view>
  48. <view class="ipXbtn"></view>
  49. <van-action-sheet show="{{show}}" title="支付模板" bind:close="closeBox">
  50. <van-swipe-cell right-width="{{ 65 }}" wx:for="{{approvalItemsOptions}}" wx:key="index">
  51. <van-cell-group>
  52. <van-cell label="{{item.approvalItems}}" bindtap="goTemplate" data-id="{{item.id}}" >
  53. <view slot="title">
  54. <view class="van-cell-text">{{item.templateName}}<van-tag plain type="danger" color="#FC9A55" style="margin-left:10px;" wx:if="{{index == 0}}">默认</van-tag></view>
  55. </view>
  56. <van-icon wx:if="{{index == 0}}" slot="icon" name="https://636c-cloud1-8gya17a31667774d-1310628902.tcb.qcloud.la/icon_mrmb.png?sign=5e5df640777f6a7993c45e1a559dd998&t=1648619865" class="custom-icon" size="40" style="margin-right: 10px;" />
  57. <van-icon wx:else slot="icon" name="https://636c-cloud1-8gya17a31667774d-1310628902.tcb.qcloud.la/icon_mb.png?sign=2a8bbe2cb4d4e0f28a99fddbe042d26c&t=1648620032" class="custom-icon" size="40" style="margin-right: 10px;" />
  58. </van-cell>
  59. </van-cell-group>
  60. <view slot="right" class="deleteBox" data-id="{{item.id}}" data-index="{{index}}" bindtap="delete">
  61. <image src="../../image/apply/icon_delete.png" style="width: 25px;height: 25px;margin: 0 auto;"></image>
  62. </view>
  63. </van-swipe-cell>
  64. <van-empty wx:if="{{approvalItemsOptions.length == 0}}" description="暂无支付模板" />
  65. </van-action-sheet>