微信小程序
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

80 рядки
4.4 KiB

  1. <!--pages/paymentManager/paymentManager.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'}};height: 19.0909px;" mode="widthFix" bindtap="back" referrer="no-referrer|origin|unsafe-url"></image>
  4. <text style="top:{{isIPX?'54px':'30px'}};">支出管理</text>
  5. </view>
  6. <van-dropdown-menu active-color="#5CAE77" bind:change="changeTab" id="top_view1" class="search_box" style="margin-top:{{isIPX?'88px':'64px'}};">
  7. <van-dropdown-item value="{{ value1 }}" options="{{ option1 }}" bind:change="changeTab" />
  8. <van-dropdown-item value="{{ value2 }}" options="{{ option2 }}" bind:change="changeTab2" />
  9. <van-dropdown-item value="{{ value3 }}" options="{{ option3 }}" bind:change="changeTab2" />
  10. </van-dropdown-menu>
  11. <scroll-view scroll-y refresher-threshold="0" style="height:{{scrollHeight}}px" bindscrolltolower="paging" lower-threshold="100">
  12. <van-swipe-cell right-width="{{ 50 }}" class="workflow" wx:for="{{list}}" wx:key="index" wx:for-item="item" >
  13. <view class="li" >
  14. <view style="width:70%;flex:7;">
  15. <view class="tit_box">
  16. <image src="/image/icon/paymentManager_icon.png" style="width: 15px;height: 15px;margin-right: 10px;" referrer="no-referrer|origin|unsafe-url"></image>
  17. <text class="tit">{{item.payer}}</text>
  18. </view>
  19. <view class="detail_box">
  20. <view style="margin-left:5%;color:grey;font-size: 12px;justify-content: space-between;display: contents;">
  21. <text>{{item.payerAccount}}</text>
  22. <text style="color:#62AD66;background-color: rgb(98,173,102,0.2);padding:2px 4px;text-align: right;">{{item.transferType==1?"银行还款":"信用卡还款"}}</text>
  23. </view>
  24. </view>
  25. <view class="detail_box">
  26. <view style="width: 50%;">
  27. <image src="/image/icon/clock_icon.png" style="width: 15px;height: 15px;border-radius:5px;margin-right: 5px;"></image>
  28. <text>{{item.applyDate}}</text>
  29. </view>
  30. <view style="width: 50%;">
  31. <image src="/image/icon/clock_red_icon.png" style="width: 15px;height: 15px;border-radius:5px;margin-right: 5px;"></image>
  32. <text>{{item.applyDate}}</text>
  33. </view>
  34. </view>
  35. </view>
  36. <view style="width:30%;flex:3;">
  37. <view style="text-align: right;">
  38. <view style="color:red;line-height: 50px;font-size: 18px;">
  39. <text style="font-size: 10px;display: inline;">¥</text>{{item.expenditureAmount}}
  40. </view>
  41. </view>
  42. <view style="text-align: right;" bindtap="toPay" data-id="{{item.id}}">
  43. <button wx-if="{{item.paymentState==1}}" type="primary" size="mini" style="border-radius: 15px;" >待支付</button>
  44. <button wx-if="{{item.paymentState==3}}" type="primary" size="mini" style="border-radius: 15px;background-color: #B3DB62;">银行受理</button>
  45. <button wx-if="{{item.paymentState==4}}" type="warn" size="mini" style="border-radius: 15px;">支付失败</button>
  46. <button wx-if="{{item.paymentState==5}}" type="primary" size="mini" style="border-radius: 15px;background-color: #FC9A55;">部分失败</button>
  47. </view>
  48. </view>
  49. </view>
  50. <view slot="right" class="deleteBox">
  51. <view style="flex: 1;height: 100%;display: flex;align-items: center;flex-direction: column;justify-content: center;background-color: rgb(98,173,102,0.2);" data-id="{{item.id}}" data-index="{{index}}" bindtap="upload">
  52. <view>
  53. <image src="../../image/icon/upload_icon.png" style="width: 25px;height: 25px;margin: 0 auto;display: block;" ></image>
  54. </view>
  55. <view>
  56. <text style="color: #62AD66;">附件</text>
  57. </view>
  58. </view>
  59. </view>
  60. </van-swipe-cell>
  61. </scroll-view>
  62. <van-action-sheet show="{{showUpload}}" title="附件" bind:close="closeBox">
  63. <scroll-view scroll-y="true" style="height: 600rpx;" scroll-top="0">
  64. <view class="fj-box">
  65. <view class="fj-li" wx:for="{{fileList}}" wx:key="index" wx:for-item="item" >
  66. <view>
  67. <text>{{item.dictLabel}}</text>
  68. </view>
  69. <view class="img_box">
  70. <view class="img_li">
  71. <van-upload file-list="{{ item.list }}" deletable="{{false}}" show-upload="{{false}}" bind:click-preview="lookDown">
  72. </van-upload>
  73. </view>
  74. </view>
  75. </view>
  76. </view>
  77. </scroll-view>
  78. </van-action-sheet>