微信小程序
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

92 řádky
4.2 KiB

  1. <!--pages/regular/index.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. <scroll-view scroll-y refresher-threshold="0" style="height:100%" bindscrolltolower="paging" lower-threshold="100" style="margin-top:{{isIPX?'98px':'74px'}};">
  7. <!-- wx:for="{{list}}" wx:key="index" wx:for-item="item" right-width="{{ 50 }}" -->
  8. <van-swipe-cell class="workflow" wx:for="{{list}}" >
  9. <view class="li" >
  10. <view style="width:70%;flex:7;">
  11. <view class="tit_box">
  12. <text class="tit">{{item.pdtName}}</text>
  13. <text class="tit_tab2">{{item.recSts}}</text>
  14. </view>
  15. <view class="detail_box">
  16. <view style="margin-left:5%;color:grey;font-size: 12px;justify-content: space-between;display: contents;">
  17. <text>账号:{{item.acctNo}}</text>
  18. <text class="tit_tab">钞</text>
  19. </view>
  20. <view class="ll_box">
  21. <image src="/image/icon/icon_ll.png" style="width: 17px;height: 14px;"></image>
  22. <text>利率</text>
  23. <text style="color: #E90000;">{{item.acctIntr}}%</text>
  24. </view>
  25. </view>
  26. <view class="money_box">
  27. <view>
  28. <text>定期余额(元)</text>
  29. <text style="color: #E90000;font-size: 22px;margin-top: 10px;">{{item.tdAcctBal}}</text>
  30. <view style="display: flex;align-items: center;margin-top: 10px;">
  31. <image src="/image/icon/clock_icon.png" style="width: 15px;height: 15px;border-radius:5px;margin-right: 5px;"></image>
  32. <text>{{item.opacIntsDt}}</text>
  33. </view>
  34. </view>
  35. <view>
  36. <text>可用余额(元)</text>
  37. <text style="color: #5CAE77;font-size: 22px;margin-top: 10px;">{{item.avlAmt}}</text>
  38. <view style="display: flex;align-items: center;margin-top: 10px;">
  39. <image src="/image/icon/clock_red_icon.png" style="width: 15px;height: 15px;border-radius:5px;margin-right: 5px;"></image>
  40. <text>{{item.dueDt}}</text>
  41. </view>
  42. </view>
  43. <view>
  44. <text>存期(天)</text>
  45. <text style="color: #444444;font-size: 22px;margin-top: 10px;">{{item.depPrdN}}</text>
  46. </view>
  47. </view>
  48. </view>
  49. <!-- <view style="width:30%;flex:3;">
  50. <view style="text-align: right;">
  51. <view style="color:red;line-height: 50px;font-size: 18px;">
  52. <text style="font-size: 10px;display: inline;">¥</text>666
  53. </view>
  54. </view>
  55. <view style="text-align: right;" bindtap="toPay" data-id="{{item.approvalItemTemplateId}}" data-ids="{{item.id}}">
  56. <button type="primary" size="mini" style="border-radius: 15px;" >待支付</button>
  57. </view>
  58. </view> -->
  59. </view>
  60. <!-- <view slot="right" class="deleteBox">
  61. <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">
  62. <view>
  63. <image src="../../image/icon/upload_icon.png" style="width: 25px;height: 25px;margin: 0 auto;display: block;" ></image>
  64. </view>
  65. <view>
  66. <text style="color: #62AD66;">附件</text>
  67. </view>
  68. </view>
  69. </view> -->
  70. </van-swipe-cell>
  71. </scroll-view>
  72. <van-action-sheet show="{{showUpload}}" title="附件" bind:close="closeBox">
  73. <scroll-view scroll-y="true" style="height: 600rpx;" scroll-top="0">
  74. <view class="fj-box">
  75. <view class="fj-li" wx:for="{{fileList}}" wx:key="index" wx:for-item="item" >
  76. <view>
  77. <text>{{item.dictLabel}}</text>
  78. </view>
  79. <view class="img_box">
  80. <view class="img_li">
  81. <van-upload file-list="{{ item.list }}" deletable="{{false}}" show-upload="{{false}}" bind:click-preview="lookDown">
  82. </van-upload>
  83. </view>
  84. </view>
  85. </view>
  86. </view>
  87. </scroll-view>
  88. </van-action-sheet>