awards.vue 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <template>
  2. <view>
  3. <view class="bg-img" style="background-image: url('/static/bgimg.png');height: 310upx;"></view>
  4. <view class="container" style="margin: -80upx 30upx 30upx 30upx;">
  5. <view class="padding">
  6. <text class="text-bold text-black padding-right-sm">账户热力值</text>
  7. <text class="text-bold" style="color: #f87a3a;">可兑换到账288元</text>
  8. </view>
  9. <view class="padding-lr flex justify-between align-center">
  10. <view>
  11. <text style="font-size: 60upx;font-family: PingFang SC;font-weight: 800;color: #F3484E;">28216</text>
  12. <text class="padding-left-xs" style="font-size: 24upx;font-family: PingFang SC;font-weight: 800;color: #878787;">热力值</text>
  13. </view>
  14. <button class="cu-btn round text-white" style="background-color: #f75757;width: 140upx;">提现</button>
  15. </view>
  16. <view style="margin: 10upx 20upx;">
  17. <u-line color="#e0e0e0"></u-line>
  18. </view>
  19. <view style="padding: 20upx 0upx 0upx 30upx;">
  20. <text class="title">已提现:</text>
  21. <text class="number">100</text>
  22. <text class="title padding-left-xs">元</text>
  23. </view>
  24. <view style="padding: 10upx 0upx 20upx 30upx;">
  25. <text class="title">可提现:</text>
  26. <text class="number">188</text>
  27. <text class="title padding-left-xs">元</text>
  28. </view>
  29. </view>
  30. <view class="container margin-lr">
  31. <view class="padding flex align-center">
  32. <view class="cuIcon-text text-bold padding-right-xs" style="font-size: 38upx;"></view>
  33. <view class="title">提现明细</view>
  34. </view>
  35. <block v-for="(item, index) in 6" :key="index">
  36. <view class="flex align-center justify-between">
  37. <view class="padding-lr">
  38. <view class="title">热力提现</view>
  39. <view style="font-size: 24upx;font-family: PingFang SC;font-weight: bold;color: #686868;">2020-11-24 00:32</view>
  40. </view>
  41. <view class="padding-right">
  42. <text style="font-size: 36upx;font-family: PingFang SC;font-weight: bold;color: #F3484E;">+45</text>
  43. <text class="text-bold padding-left-xs">元</text>
  44. </view>
  45. </view>
  46. <view style="padding: 20upx;">
  47. <u-line color="#e0e0e0"></u-line>
  48. </view>
  49. </block>
  50. </view>
  51. <view style="height: 30upx;"></view>
  52. </view>
  53. </template>
  54. <script>
  55. export default {
  56. data() {
  57. return {
  58. }
  59. },
  60. methods: {
  61. }
  62. }
  63. </script>
  64. <style>
  65. .container {
  66. background-color: #FFFFFF;
  67. border-radius: 16upx;
  68. box-shadow: 0px 3px 79px 0px rgba(132, 132, 132, 0.22);
  69. }
  70. .title {
  71. font-size: 28upx;
  72. font-family: PingFang SC;
  73. font-weight: 800;
  74. color: #000000;
  75. }
  76. .number {
  77. font-size: 30upx;
  78. font-family: PingFang SC;
  79. font-weight: 800;
  80. color: #F3484E;
  81. }
  82. </style>