history.vue 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. uni.setNavigationBarTitle({
  29. title: this.$t("tab.a2"),
  30. });
  31. },
  32. methods: {},
  33. };
  34. </script>
  35. <style lang="scss">
  36. .all {
  37. width: 750rpx;
  38. min-height: 100vh;
  39. background-color: $page-color-base;
  40. }
  41. .list {
  42. display: flex;
  43. justify-content: start;
  44. width: 750rpx;
  45. height: 150rpx;
  46. }
  47. .qs {
  48. height: 19rpx;
  49. font-size: 20rpx;
  50. font-weight: 500;
  51. color: #ffffff;
  52. margin-top: 27rpx;
  53. margin-left: 30rpx;
  54. }
  55. .dy {
  56. height: 35rpx;
  57. font-size: 46rpx;
  58. font-weight: bold;
  59. color: #fdb242;
  60. margin-top: 14rpx;
  61. margin-left: 30rpx;
  62. }
  63. .ri {
  64. display: flex;
  65. justify-content: start;
  66. margin-left: -45rpx;
  67. }
  68. .sx {
  69. height: 28rpx;
  70. font-size: 30rpx;
  71. font-weight: bold;
  72. color: #df5660;
  73. margin-top: 50rpx;
  74. }
  75. .xian {
  76. width: 696rpx;
  77. height: 2rpx;
  78. background: #f0f0f0;
  79. opacity: 0.35;
  80. margin-left: 30rpx;
  81. margin-top: 43rpx;
  82. }
  83. </style>