微信小程序
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 3.8 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
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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-tab>
  29. <van-tab title="公务卡">
  30. <view class="bank_box">
  31. <image src="../../image/apply/jsyh_bg2.png" style="width: 100%;position: absolute;bottom:0;z-index: 9;" mode="widthFix"></image>
  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-tab>
  41. </van-tabs>
  42. </view>
  43. <view class="bottom">
  44. <view class="btn1" bindtap="openBox">支付模板</view>
  45. <view class="btn2" bindtap="swichPaymentApply">下一步</view>
  46. </view>
  47. <van-action-sheet show="{{show}}" title="支付模板" bind:close="closeBox">
  48. <van-swipe-cell right-width="{{ 65 }}" wx:for="{{approvalItemsOptions}}" wx:key="index">
  49. <van-cell-group>
  50. <van-cell label="{{item.approvalItems}}" bindtap="goTemplate" data-id="{{item.id}}" >
  51. <view slot="title">
  52. <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>
  53. </view>
  54. <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;" />
  55. <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;" />
  56. </van-cell>
  57. </van-cell-group>
  58. <view slot="right" class="deleteBox" data-id="{{item.id}}" data-index="{{index}}" bindtap="delete">
  59. <image src="../../image/apply/icon_delete.png" style="width: 25px;height: 25px;margin: 0 auto;"></image>
  60. </view>
  61. </van-swipe-cell>
  62. </van-action-sheet>