history.vue 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. export default {
  21. data() {
  22. return {
  23. };
  24. }
  25. }
  26. </script>
  27. <style lang="scss">
  28. .all {
  29. width: 750rpx;
  30. min-height: 100vh;
  31. background-color: #000;
  32. }
  33. .list {
  34. display: flex;
  35. justify-content: start;
  36. width: 750rpx;
  37. height: 150rpx;
  38. }
  39. .qs {
  40. height: 19rpx;
  41. font-size: 20rpx;
  42. font-weight: 500;
  43. color: #FFFFFF;
  44. margin-top: 27rpx;
  45. margin-left: 30rpx;
  46. }
  47. .dy {
  48. height: 35rpx;
  49. font-size: 46rpx;
  50. font-weight: bold;
  51. color: #FDB242;
  52. margin-top: 14rpx;
  53. margin-left: 30rpx;
  54. }
  55. .ri {
  56. display: flex;
  57. justify-content: start;
  58. margin-left: -45rpx;
  59. }
  60. .sx {
  61. height: 28rpx;
  62. font-size: 30rpx;
  63. font-weight: bold;
  64. color: #DF5660;
  65. margin-top: 50rpx;
  66. }
  67. .xian {
  68. width: 696rpx;
  69. height: 2rpx;
  70. background: #F0F0F0;
  71. opacity: 0.35;
  72. margin-left: 30rpx;
  73. margin-top: 43rpx;
  74. }
  75. </style>