history.vue 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <template>
  2. <view class="all">
  3. <view
  4. class="list"
  5. v-for="item in 25"
  6. :key="item">
  7. <view class="le">
  8. <view class="qs">第2022010223期</view>
  9. <view class="dy">0.064489</view>
  10. </view>
  11. <view class="ri">
  12. <view
  13. class="sx"
  14. style="margin-left: 380rpx"
  15. >{{ $t("enter.u6") }}</view
  16. >
  17. <view
  18. class="sx"
  19. style="margin-left: 30rpx"
  20. >{{ $t("enter.u5") }}</view
  21. >
  22. </view>
  23. <view class="ri">
  24. <view
  25. class="sx"
  26. style="margin-left: 380rpx"
  27. >{{ $t("enter.u4") }}</view
  28. >
  29. <view
  30. class="sx"
  31. style="margin-left: 30rpx"
  32. >{{ $t("enter.u7") }}</view
  33. >
  34. </view>
  35. </view>
  36. </view>
  37. </template>
  38. <script>
  39. import { gameBetList } from "@/api/game.js";
  40. export default {
  41. data() {
  42. return {}
  43. },
  44. onLoad() {},
  45. methods: {},
  46. };
  47. </script>
  48. <style lang="scss">
  49. .all {
  50. width: 750rpx;
  51. min-height: 100vh;
  52. background-color: $page-color-base;
  53. }
  54. .list {
  55. display: flex;
  56. justify-content: start;
  57. width: 750rpx;
  58. height: 150rpx;
  59. }
  60. .qs {
  61. height: 19rpx;
  62. font-size: 20rpx;
  63. font-weight: 500;
  64. color: #ffffff;
  65. margin-top: 27rpx;
  66. margin-left: 30rpx;
  67. }
  68. .dy {
  69. height: 35rpx;
  70. font-size: 46rpx;
  71. font-weight: bold;
  72. color: #fdb242;
  73. margin-top: 14rpx;
  74. margin-left: 30rpx;
  75. }
  76. .ri {
  77. display: flex;
  78. justify-content: start;
  79. margin-left: -45rpx;
  80. }
  81. .sx {
  82. height: 28rpx;
  83. font-size: 30rpx;
  84. font-weight: bold;
  85. color: #df5660;
  86. margin-top: 50rpx;
  87. }
  88. .xian {
  89. width: 696rpx;
  90. height: 2rpx;
  91. background: #f0f0f0;
  92. opacity: 0.35;
  93. margin-left: 30rpx;
  94. margin-top: 43rpx;
  95. }
  96. </style>