test2.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. <template>
  2. <view class="">
  3. <view class="top">
  4. <image style="border-radius: 50%;" src="../../../static/icon/pay-success.png" ></image>
  5. <text class="margin-top-20">提现成功</text>
  6. <view class="data">
  7. <view class="price reduce text-base text-bold" style="padding: 0;">
  8. 50
  9. </view>
  10. </view>
  11. </view>
  12. <view class="card">
  13. <view class="item">
  14. <text>提现状态</text>
  15. <text>提现成功</text>
  16. </view>
  17. <view class="item" v-if="billDetail.jsStatus">
  18. <text>提现时间</text>
  19. <text>2021-10-25 11:20:19</text>
  20. </view>
  21. <view class="item">
  22. <text>提现金额</text>
  23. <text>2</text>
  24. </view>
  25. <view class="item">
  26. <text>提现服务费</text>
  27. <text>0.1</text>
  28. </view>
  29. <view class="item">
  30. <text>提现手续费</text>
  31. <text>1</text>
  32. </view>
  33. <view class="item">
  34. <text>实际到账</text>
  35. <text>1</text>
  36. </view>
  37. <view class="item">
  38. <text>提现银行</text>
  39. <text>梁汉强</text>
  40. </view>
  41. <view class="item">
  42. <text>提现账号</text>
  43. <text>6236683140002387688</text>
  44. </view>
  45. <view class="item">
  46. <text>失败原因</text>
  47. <text>商户账户余额不足以扣除手续费</text>
  48. </view>
  49. </view>
  50. <view class="question">
  51. <text>联系客服</text>
  52. <text class="cuIcon-right" style="margin-top: 5rpx;"></text>
  53. </view>
  54. </view>
  55. </template>
  56. <script>
  57. export default {
  58. name: '',
  59. data() {
  60. return {
  61. };
  62. }
  63. };
  64. </script>
  65. <style scoped lang="scss">
  66. .top {
  67. padding: 80rpx 0 0;
  68. display: flex;
  69. justify-content: center;
  70. align-items: center;
  71. flex-direction: column;
  72. image {
  73. width: 120rpx;
  74. height: 120rpx;
  75. }
  76. .title {
  77. color: #000;
  78. padding-top: 15rpx;
  79. font-size: 32rpx;
  80. }
  81. .data {
  82. padding-top: 30rpx;
  83. display: flex;
  84. image {
  85. width: 40rpx;
  86. height: 40rpx;
  87. }
  88. view {
  89. padding-left: 20rpx;
  90. text:first-child {
  91. color: #000;
  92. font-size: 38rpx;
  93. }
  94. text:last-child {
  95. font-size: 32rpx;
  96. padding-left: 20rpx;
  97. }
  98. }
  99. }
  100. }
  101. .card {
  102. margin-top: 50rpx;
  103. padding: 20rpx 30rpx;
  104. background-color: #FFFFFF;
  105. .item{
  106. padding: 20rpx 0;
  107. font-size: 28rpx;
  108. color: #888888;
  109. margin: 0 20rpx;
  110. display: flex;
  111. justify-content: space-between;
  112. }
  113. }
  114. .question{
  115. color: #888888;
  116. background-color: #FFFFFF;
  117. margin-top: 20rpx;
  118. margin-bottom: 50rpx;
  119. padding: 20rpx 50rpx;
  120. display: flex;
  121. justify-content: space-between;
  122. }
  123. .strong{
  124. font-weight: bold;
  125. color: #000;
  126. }
  127. </style>