帧视界壹通告,付费看视频的微信小程序
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.

126 lines
2.3 KiB

11 months ago
11 months ago
11 months ago
11 months ago
  1. <template>
  2. <view class="withdrawalRecord">
  3. <!--顶部导航栏-->
  4. <navbar leftClick @leftClick="$utils.navigateBack" title="提现记录" />
  5. <!--提现记录页面-->
  6. <view class="content">
  7. <view class="list" v-for="(item,index) in list ">
  8. <!--第一行-->
  9. <view class="item1">
  10. <view class="left">提现金额</view>
  11. <view class="right">
  12. <view class="money">${{item.money}}</view>
  13. <view :class="item.flag ? 'yiDaoZhangClass' : 'shenHeClass'">已到账</view>
  14. </view>
  15. </view>
  16. <!--第二行-->
  17. <view class="item2">
  18. <view class="left">申请时间</view>
  19. <view class="right">{{item.ApplyDateTime}}</view>
  20. </view>
  21. <!--第三行-->
  22. <view class="item2">
  23. <view class="left">到账时间</view>
  24. <view class="right">{{item.daozhangsj}}</view>
  25. </view>
  26. </view>
  27. </view>
  28. </view>
  29. </template>
  30. <script>
  31. export default {
  32. data() {
  33. return {
  34. list: [{
  35. money: '13354',
  36. ApplyDateTime: '2024.12.12 16:55:55',
  37. daozhangsj: '2024.12.12 16:55:55',
  38. flag: true,
  39. },
  40. {
  41. money: '13354',
  42. ApplyDateTime: '2024.12.12 16:55:55',
  43. daozhangsj: '2024.12.12 16:55:55',
  44. flag: false,
  45. }
  46. ]
  47. };
  48. }
  49. }
  50. </script>
  51. <style lang="scss" scoped>
  52. * {
  53. box-sizing: border-box;
  54. margin: 0;
  55. padding: 0;
  56. }
  57. .withdrawalRecord {
  58. background-color: #f8faff;
  59. height: calc(100vh - 240rpx);
  60. width: 100vw;
  61. .content {
  62. padding: 20rpx 20rpx 50rpx 20rpx;
  63. box-sizing: border-box;
  64. width: 100vw;
  65. .list {
  66. box-sizing: border-box;
  67. border-bottom: 2rpx solid #e0e2e6;
  68. padding: 30rpx;
  69. display: flex;
  70. flex-direction: column;
  71. gap: 10rpx;
  72. .item1 {
  73. display: flex;
  74. .left {
  75. width: 30%;
  76. }
  77. .right {
  78. display: flex;
  79. width: 70%;
  80. .money {
  81. width: 75%;
  82. }
  83. .yiDaoZhangClass {
  84. width: 25%;
  85. background: $uni-linear-gradient-color;
  86. -webkit-background-clip: text;
  87. /*将设置的背景颜色限制在文字中*/
  88. -webkit-text-fill-color: transparent;
  89. /*给文字设置成透明*/
  90. }
  91. .shenHeClass {
  92. width: 25%;
  93. }
  94. }
  95. }
  96. .item2 {
  97. display: flex;
  98. .left {
  99. width: 30%;
  100. }
  101. .right {
  102. width: 70%;
  103. }
  104. }
  105. }
  106. }
  107. }
  108. </style>