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.

128 lines
2.2 KiB

  1. <template>
  2. <view class="app-container">
  3. <u-gap height="10rpx" bgColor="#F7F7F7"></u-gap>
  4. <view class="his-content">
  5. <view class="his-item u-border-bottom">
  6. <view class="hit-left">
  7. <view class="his-name">
  8. 流水号: 139812983213
  9. </view>
  10. <view class="his-state">
  11. 提现成功
  12. </view>
  13. <view class="his-time">
  14. 2023-11-28 15:45:39
  15. </view>
  16. </view>
  17. <view class="hit-right">
  18. -458.00
  19. </view>
  20. </view>
  21. <view class="his-item u-border-bottom">
  22. <view class="hit-left">
  23. <view class="his-name">
  24. 流水号: 139812983213
  25. </view>
  26. <view class="his-state">
  27. 提现成功
  28. </view>
  29. <view class="his-time">
  30. 2023-11-28 15:45:39
  31. </view>
  32. </view>
  33. <view class="hit-right">
  34. -458.00
  35. </view>
  36. </view>
  37. <view class="his-item u-border-bottom">
  38. <view class="hit-left">
  39. <view class="his-name">
  40. 流水号: 139812983213
  41. </view>
  42. <view class="his-state">
  43. 提现成功
  44. </view>
  45. <view class="his-time">
  46. 2023-11-28 15:45:39
  47. </view>
  48. </view>
  49. <view class="hit-right">
  50. -458.00
  51. </view>
  52. </view>
  53. <view class="his-item u-border-bottom">
  54. <view class="hit-left">
  55. <view class="his-name">
  56. 流水号: 139812983213
  57. </view>
  58. <view class="his-state">
  59. 提现成功
  60. </view>
  61. <view class="his-time">
  62. 2023-11-28 15:45:39
  63. </view>
  64. </view>
  65. <view class="hit-right">
  66. -458.00
  67. </view>
  68. </view>
  69. </view>
  70. </view>
  71. </template>
  72. <script>
  73. export default {
  74. data() {
  75. return {
  76. };
  77. }
  78. }
  79. </script>
  80. <style lang="scss">
  81. .his-content {
  82. padding: 0 30rpx;
  83. .his-item {
  84. display: flex;
  85. justify-content: space-between;
  86. padding: 30rpx 0 30rpx;
  87. .hit-left {
  88. .his-name {
  89. color: #454545;
  90. font-size: 12px;
  91. line-height: 1.8;
  92. font-weight: bold;
  93. }
  94. .his-state {
  95. color: #666;
  96. font-size: 12px;
  97. line-height: 1.8;
  98. }
  99. .his-time {
  100. color: #999;
  101. font-size: 12px;
  102. line-height: 1.8;
  103. }
  104. }
  105. .hit-right {
  106. height: 130rpx;
  107. line-height: 130rpx;
  108. font-size: 14px;
  109. color: #454545;
  110. font-weight: bold;
  111. }
  112. }
  113. .u-border-bottom,
  114. .u-border-top {
  115. border-color: #eee !important;
  116. }
  117. }
  118. </style>