teamDetails.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. <template>
  2. <view class="center">
  3. <view class="box">
  4. <view class="title">
  5. <view class="log"><image src="" mode=""></image></view>
  6. <view class="name">FilsCoin矿机拼购</view>
  7. <view class="lun">36轮</view>
  8. <view class="more">已开奖</view>
  9. </view>
  10. <view class="main">
  11. <view class="main-info rule">每轮限购1组,每组限购1份</view>
  12. <view class="main-info time">
  13. 开奖时间:
  14. <text>2021-07-21 08:00:00</text>
  15. </view>
  16. <view class="main-info new">该轮预约1份,拼中1份,退回0份</view>
  17. </view>
  18. </view>
  19. <view class="box">
  20. <view class="allTitle">
  21. <view class="title-left">第1组 预约份数/总份数:11/11</view>
  22. <view class="title-right">未中奖</view>
  23. </view>
  24. </view>
  25. </view>
  26. </template>
  27. <script>
  28. export default {
  29. data() {
  30. return {
  31. data: ''
  32. };
  33. }
  34. };
  35. </script>
  36. <style lang="scss">
  37. .center,
  38. page {
  39. height: 100%;
  40. background: #f7fbfe;
  41. }
  42. .box {
  43. margin: 30rpx auto 0;
  44. width: 690rpx;
  45. background: #ffffff;
  46. box-shadow: 0px 0px 17rpx 0px rgba(0, 0, 0, 0.05);
  47. border-radius: 20rpx;
  48. padding: 26rpx 36rpx 30rpx 30rpx;
  49. .title {
  50. display: flex;
  51. justify-content: flex-start;
  52. align-items: center;
  53. .log {
  54. width: 48rpx;
  55. height: 46rpx;
  56. background: #00bcd4;
  57. image {
  58. width: 100%;
  59. height: 100%;
  60. }
  61. }
  62. .name {
  63. padding-left: 12rpx;
  64. font-size: 34rpx;
  65. font-family: PingFang SC;
  66. font-weight: bold;
  67. color: #0f253a;
  68. }
  69. .lun {
  70. padding-left: 10rpx;
  71. font-size: 26rpx;
  72. font-family: PingFang SC;
  73. font-weight: 500;
  74. color: #6d7c88;
  75. }
  76. .more {
  77. padding-left: 140rpx;
  78. font-size: 28rpx;
  79. font-family: PingFang SC;
  80. font-weight: bold;
  81. color: #44969d;
  82. }
  83. }
  84. .main {
  85. margin-top: 26rpx;
  86. .main-info {
  87. padding-top: 16rpx;
  88. }
  89. .rule {
  90. font-size: 26rpx;
  91. font-family: PingFang SC;
  92. font-weight: 500;
  93. color: #0f253a;
  94. }
  95. .time {
  96. font-size: 26rpx;
  97. font-family: PingFang SC;
  98. font-weight: 500;
  99. color: #6d7c88;
  100. text {
  101. color: #0f253a;
  102. }
  103. }
  104. .new {
  105. font-size: 24rpx;
  106. font-family: PingFang SC;
  107. font-weight: 500;
  108. color: #ff4c4c;
  109. }
  110. }
  111. }
  112. .allTitle {
  113. display: flex;
  114. justify-content: space-between;
  115. align-items: center;
  116. .title-left {
  117. font-size: 34rpx;
  118. font-family: PingFang SC;
  119. font-weight: bold;
  120. color: #0F253A;
  121. }
  122. .title-right {
  123. font-size: 26rpx;
  124. font-family: PingFang SC;
  125. font-weight: 500;
  126. color: #6D7C88;
  127. }
  128. }
  129. </style>