details.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. <template>
  2. <view class="">
  3. <view class="list" v-for="item in 12" :key="item">
  4. <view class="top">
  5. <view class="nc">123****032@qq.com</view>
  6. <view class="">
  7. <image class="img" src="/static/shouye/huiyuan.png" mode=""></image>
  8. </view>
  9. </view>
  10. <view class="center" @click="navX">
  11. <view class="sj">2023.05.05 15:00</view>
  12. <view class="xq">詳情</view>
  13. <view class="">
  14. <image class="ima" src="/static/icon/jt.png" mode=""></image>
  15. </view>
  16. </view>
  17. <view class="xian"></view>
  18. <view class="last">
  19. <view class="left">互娛金額:</view>
  20. <view class="leftT">5000U</view>
  21. <view class="right">推廣數:</view>
  22. <view class="rightT">50</view>
  23. </view>
  24. </view>
  25. </view>
  26. </template>
  27. <script>
  28. export default {
  29. data() {
  30. return {
  31. };
  32. }
  33. }
  34. </script>
  35. <style lang="scss">
  36. .list {
  37. width: 684rpx;
  38. height: 262rpx;
  39. background: #191A1F;
  40. border-radius: 16rpx;
  41. margin-left: 36rpx;
  42. margin-top: 25rpx;
  43. }
  44. .top {
  45. display: flex;
  46. justify-content: start;
  47. }
  48. .nc {
  49. height: 31rpx;
  50. font-size: 32rpx;
  51. font-family: PingFang SC;
  52. font-weight: bold;
  53. color: #FFFFFF;
  54. margin-left: 35rpx;
  55. padding-top: 40rpx;
  56. }
  57. .img {
  58. width: 100rpx;
  59. height: 32rpx;
  60. margin-left: 20rpx;
  61. margin-top: 46rpx;
  62. object-fit: cover;
  63. }
  64. .center {
  65. display: flex;
  66. justify-content: start;
  67. }
  68. .sj {
  69. margin-left: 34rpx;
  70. margin-top: 25rpx;
  71. height: 22rpx;
  72. float: length($list: 231rpx);
  73. font-size: 28rpx;
  74. font-weight: 500;
  75. color: #999999;
  76. }
  77. .xq {
  78. margin-top: 25rpx;
  79. margin-left: 290rpx;
  80. height: 26rpx;
  81. font-size: 28rpx;
  82. font-weight: 500;
  83. color: #999999;
  84. float: length($list: 54rpx);
  85. }
  86. .ima {
  87. width: 13rpx;
  88. height: 19rpx;
  89. margin-top: 35rpx;
  90. margin-left: 20rpx;
  91. }
  92. .xian {
  93. width: 618rpx;
  94. height: 1rpx;
  95. background: #DDE1EB;
  96. opacity: 0.2;
  97. margin-left: 20rpx;
  98. margin-top: 30rpx;
  99. }
  100. .last {
  101. display: flex;
  102. //
  103. justify-content: start;
  104. }
  105. .left {
  106. font-size: 28rpx;
  107. font-weight: 500;
  108. color: #999999;
  109. margin-left: 36rpx;
  110. margin-top: 30rpx;
  111. }
  112. .leftT {
  113. font-size: 28rpx;
  114. font-weight: 500;
  115. color: #b98134;
  116. // margin-left: 10rpx;
  117. margin-top: 30rpx;
  118. }
  119. .right {
  120. font-size: 28rpx;
  121. font-weight: 500;
  122. color: #999999;
  123. margin-left: 220rpx;
  124. margin-top: 30rpx;
  125. }
  126. .rightT {
  127. font-size: 28rpx;
  128. font-weight: 500;
  129. color: #ffffff;
  130. margin-top: 30rpx;
  131. }
  132. </style>