index.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <template>
  2. <page title="提现记录" ref="pageRef" nav-color="transparent">
  3. <view v-for="(item, index) in tableData" :key="index" class="cell">
  4. <view class="flex-align-between" style="border-bottom: 1px solid #F8F8F8;padding-bottom: 20rpx;">
  5. <view class="color-1 font5"></view>
  6. <view class="tagBox" :style="{ background: STATUS_MAP[item.status + ''].bgColor }">
  7. <view :style="{ color: STATUS_MAP[item.status + ''].color, opacity: 1 }">
  8. {{ STATUS_MAP[item.status + ''].title }}
  9. </view>
  10. </view>
  11. </view>
  12. <view class="paddingY6">
  13. <view class="cu-form-group">
  14. <view class="title">提现时间:</view>
  15. <view class="color-2 font2">{{ item.createTime }}</view>
  16. </view>
  17. <view class="cu-form-group">
  18. <view class="title">提现卡号</view>
  19. <view class="color-2 font2">{{ item.accountNo }}</view>
  20. </view>
  21. </view>
  22. <view class="flex moneyInfo" style="background-color: #f8f8f8">
  23. <view class="basis-df padding-sm">
  24. <div class="title">提现金额</div>
  25. <div class="num">{{ item.money }}元</div>
  26. </view>
  27. <view class="basis-df padding-sm">
  28. <div class="title">实际到账</div>
  29. <div class="num">{{ item.actualMoney }}元</div>
  30. </view>
  31. </view>
  32. </view>
  33. <empty v-if="isEmpty" :top="200" />
  34. </page>
  35. </template>
  36. <script>
  37. import pageMixin from './../../mixin/page'
  38. import empty from '@/components/empty'
  39. const STATUS_MAP = {
  40. 0: { title: '待打款', color: '#499BFF', bgColor: 'rgba(73,155,255,0.2)' },
  41. 99: { title: '已完成', color: '#9E9E9E', bgColor: 'rgba(10, 199, 0, 0.2)' },
  42. 10: { title: '用户取消', color: '#FF6200', bgColor: 'rgba(255, 98, 0, 0.2)' },
  43. 11: { title: '超时取消', color: '#FF1524', bgColor: 'rgba(255, 21,36, 0.2)' }
  44. }
  45. export default {
  46. mixins: [pageMixin],
  47. components: { empty },
  48. data() {
  49. return {
  50. STATUS_MAP
  51. }
  52. },
  53. mounted() {
  54. this.refresh()
  55. },
  56. onPullDownRefresh() {
  57. this.refresh()
  58. },
  59. onReachBottom() {
  60. this.loadMore()
  61. },
  62. methods: {
  63. init() {
  64. this.refresh()
  65. },
  66. async loadData() {
  67. const res = await this.$service.wallet.withdrawRecord(
  68. this.pageNum,
  69. this.pageSize,
  70. 'MAGIC_PROMOTION'
  71. )
  72. return res
  73. }
  74. }
  75. }
  76. </script>
  77. <style lang="scss" scoped>
  78. .tagBox {
  79. font-size: 24rpx;
  80. width: 102rpx;
  81. height: 40rpx;
  82. line-height: 40rpx;
  83. border-radius: 20rpx;
  84. text-align: center;
  85. }
  86. .cell {
  87. margin: 10rpx 30rpx;
  88. padding: 30rpx;
  89. border-radius: 12rpx;
  90. background: #fff;
  91. border: 2rpx solid #eee;
  92. }
  93. .moneyInfo {
  94. font-weight: 500;
  95. font-size: 36rpx;
  96. color: #333333;
  97. line-height: 52rpx;
  98. text-align: center;
  99. .title {
  100. color: #9e9e9e;
  101. font-size: 24rpx;
  102. }
  103. }
  104. .cu-form-group {
  105. border-top: none;
  106. min-height: 70rpx;
  107. padding: 0;
  108. }
  109. </style>