extractHistory.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <template>
  2. <view class="box">
  3. <view class="headerView">
  4. <view class="leftTitle">累计提现: <text class="rightMoney">¥9584.32</text></view>
  5. <view class="leftTitle">提现中: <text class="rightMoney">¥9584.32</text></view>
  6. </view>
  7. <view v-for="(item,index) in arr" :key="index" >
  8. <view class="itemBg">
  9. <view class="first">
  10. <view class="time">2022-02-32 12:43:23</view>
  11. <view class="state">待审核</view>
  12. </view>
  13. <view class="second">
  14. <view class="name">战神 1394847393</view>
  15. <view class="monty">¥13.21</view>
  16. </view>
  17. <view class="content">拒绝原因:支付宝账户不对</view>
  18. </view>
  19. </view>
  20. </view>
  21. </template>
  22. <script>
  23. export default {
  24. data() {
  25. return {
  26. arr:[1,2,3],
  27. }
  28. },
  29. methods: {
  30. }
  31. }
  32. </script>
  33. <style>
  34. .box {
  35. min-height: 100vh;
  36. background: #F4F5F7;
  37. }
  38. .headerView{
  39. padding: 20rpx 16rpx;
  40. display: flex;
  41. justify-content: space-between;
  42. }
  43. .leftTitle{
  44. font-size: 26rpx;
  45. color: #999999;
  46. }
  47. .rightMoney{
  48. font-size: 26rpx;
  49. color: #3C3C3C;
  50. font-weight: bold;
  51. }
  52. .itemBg{
  53. margin: 0 16rpx 20rpx;
  54. background-color: #FFFFFF;
  55. border-radius: 10rpx;
  56. padding: 30rpx 20rpx;
  57. }
  58. .first{
  59. display: flex;
  60. justify-content: space-between;
  61. align-items: center;
  62. }
  63. .second{
  64. display: flex;
  65. justify-content: space-between;
  66. align-items: center;
  67. margin-top: 15rpx;
  68. }
  69. .content{
  70. margin-top: 15rpx;
  71. }
  72. .time{
  73. font-size: 28rpx;
  74. color: #999999;
  75. }
  76. .name{
  77. font-size: 28rpx;
  78. color: #3C3C3C;
  79. }
  80. .monty {
  81. font-size: 38rpx;
  82. font-weight: bold;
  83. color: #000000;
  84. }
  85. .content{
  86. font-size: 28rpx;
  87. color: #666666;
  88. }
  89. </style>