history.vue 1.5 KB

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