teamDetails.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  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 class="yu-main">
  25. <view class="img"><image src="" mode=""></image></view>
  26. <view class="yu-info">
  27. <view class="info">
  28. <view class="yu-font">回退本金</view>
  29. <view class="yu-num">100USDT</view>
  30. </view>
  31. <view class="info">
  32. <view class="yu-font">收益</view>
  33. <view class="yu-num">3USDT</view>
  34. </view>
  35. <view class="info">
  36. <view class="yu-font">唯一凭证</view>
  37. <view class="yu-num">LALA122002552000</view>
  38. </view>
  39. </view>
  40. </view>
  41. <view class="boom">
  42. <view class="boom-font">当前组爆快</view>
  43. <view class="boom-num">
  44. LALA122002552000
  45. <br />
  46. LALA122002552000
  47. </view>
  48. </view>
  49. </view>
  50. </view>
  51. </template>
  52. <script>
  53. import { pinkLogDate } from '@/api/finance.js';
  54. export default {
  55. data() {
  56. return {
  57. id:''
  58. };
  59. },
  60. onLoad(e) {
  61. this.id = e.id;
  62. this.getDate()
  63. },
  64. methods: {
  65. getDate() {
  66. pinkLogDate({},this.id).then((e) => {
  67. console.log(e);
  68. }).catch((e) => {
  69. console.log(e);
  70. })
  71. }
  72. },
  73. };
  74. </script>
  75. <style lang="scss">
  76. .center,
  77. page {
  78. height: 100%;
  79. background: #f7fbfe;
  80. }
  81. .box {
  82. margin: 30rpx auto 0;
  83. width: 690rpx;
  84. background: #ffffff;
  85. box-shadow: 0px 0px 17rpx 0px rgba(0, 0, 0, 0.05);
  86. border-radius: 20rpx;
  87. padding: 26rpx 36rpx 30rpx 30rpx;
  88. .title {
  89. display: flex;
  90. justify-content: flex-start;
  91. align-items: center;
  92. .log {
  93. width: 48rpx;
  94. height: 46rpx;
  95. background: #00bcd4;
  96. image {
  97. width: 100%;
  98. height: 100%;
  99. }
  100. }
  101. .name {
  102. padding-left: 12rpx;
  103. font-size: 34rpx;
  104. font-family: PingFang SC;
  105. font-weight: bold;
  106. color: #0f253a;
  107. }
  108. .lun {
  109. padding-left: 10rpx;
  110. font-size: 26rpx;
  111. font-family: PingFang SC;
  112. font-weight: 500;
  113. color: #6d7c88;
  114. }
  115. .more {
  116. padding-left: 140rpx;
  117. font-size: 28rpx;
  118. font-family: PingFang SC;
  119. font-weight: bold;
  120. color: #44969d;
  121. }
  122. }
  123. .main {
  124. margin-top: 26rpx;
  125. .main-info {
  126. padding-top: 16rpx;
  127. }
  128. .rule {
  129. font-size: 26rpx;
  130. font-family: PingFang SC;
  131. font-weight: 500;
  132. color: #0f253a;
  133. }
  134. .time {
  135. font-size: 26rpx;
  136. font-family: PingFang SC;
  137. font-weight: 500;
  138. color: #6d7c88;
  139. text {
  140. color: #0f253a;
  141. }
  142. }
  143. .new {
  144. font-size: 24rpx;
  145. font-family: PingFang SC;
  146. font-weight: 500;
  147. color: #ff4c4c;
  148. }
  149. }
  150. }
  151. .allTitle {
  152. display: flex;
  153. justify-content: space-between;
  154. align-items: center;
  155. .title-left {
  156. font-size: 34rpx;
  157. font-family: PingFang SC;
  158. font-weight: bold;
  159. color: #0f253a;
  160. }
  161. .title-right {
  162. font-size: 26rpx;
  163. font-family: PingFang SC;
  164. font-weight: 500;
  165. color: #6d7c88;
  166. }
  167. }
  168. .yu-main {
  169. margin-top: 40rpx;
  170. display: flex;
  171. justify-content: flex-start;
  172. align-items: center;
  173. .img {
  174. width: 180rpx;
  175. height: 155rpx;
  176. flex-shrink: 0;
  177. image {
  178. width: 100%;
  179. height: 100%;
  180. }
  181. }
  182. .yu-info {
  183. padding-top: 14rpx;
  184. margin-left: 20rpx;
  185. width: 100%;
  186. .info {
  187. display: flex;
  188. justify-content: space-between;
  189. .yu-font {
  190. font-size: 26rpx;
  191. font-family: PingFang SC;
  192. font-weight: 500;
  193. color: #6d7c88;
  194. }
  195. .yu-num {
  196. font-size: 26rpx;
  197. font-family: PingFang SC;
  198. font-weight: bold;
  199. color: #0f253a;
  200. }
  201. }
  202. }
  203. }
  204. .boom {
  205. padding-left: 14rpx;
  206. margin-top: 28rpx;
  207. display: flex;
  208. justify-content: space-between;
  209. .boom-font {
  210. font-size: 26rpx;
  211. font-family: PingFang SC;
  212. font-weight: 500;
  213. color: #6d7c88;
  214. }
  215. .boom-num {
  216. font-size: 26rpx;
  217. font-family: PingFang SC;
  218. font-weight: bold;
  219. color: #0f253a;
  220. }
  221. }
  222. </style>