myWinningRecord.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <template>
  2. <view>
  3. <u-navbar title="获奖记录" >
  4. </u-navbar>
  5. <view class="main">
  6. <view class="winning-box">
  7. <view class="item">
  8. <view class="title">
  9. 活动:
  10. </view>
  11. <view class="value">
  12. 2023年度春季职工运动会
  13. </view>
  14. </view>
  15. <view class="item">
  16. <view class="title">
  17. 奖励:
  18. </view>
  19. <view class="value highlight">
  20. 品牌羽毛球拍*2
  21. </view>
  22. </view>
  23. <view class="else">
  24. <view class="state">
  25. 已结束
  26. </view>
  27. <view class="date">
  28. 2020-12-30
  29. </view>
  30. </view>
  31. </view>
  32. <view class="winning-box">
  33. <view class="item">
  34. <view class="title">
  35. 活动:
  36. </view>
  37. <view class="value">
  38. 2023年度春季职工运动会
  39. </view>
  40. </view>
  41. <view class="item">
  42. <view class="title">
  43. 奖励:
  44. </view>
  45. <view class="value highlight">
  46. 品牌羽毛球拍*2
  47. </view>
  48. </view>
  49. <view class="else">
  50. <view class="state">
  51. 已结束
  52. </view>
  53. <view class="date">
  54. 2020-12-30
  55. </view>
  56. </view>
  57. </view>
  58. </view>
  59. <u-divider bg-color="#F2F4F4" border-color="#CFD2D5">已经到底了</u-divider>
  60. </view>
  61. </template>
  62. <script>
  63. export default {
  64. data() {
  65. return {
  66. }
  67. },
  68. methods: {
  69. }
  70. }
  71. </script>
  72. <style lang="scss" scoped>
  73. .main{
  74. padding: 24rpx 32rpx;
  75. .winning-box{
  76. padding: 24rpx;
  77. border-radius: 8px;
  78. background-color: rgba(255, 255, 255, 1);
  79. margin-bottom: 24rpx;
  80. .item{
  81. display: flex;
  82. margin-bottom: 16rpx;
  83. color: rgba(51, 51, 51, 1);
  84. font-size: 16px;
  85. font-weight: bold;
  86. font-family: 'Medium';
  87. .highlight{
  88. color:#018BB9;
  89. }
  90. }
  91. .else{
  92. display: flex;
  93. color: rgba(119, 119, 119, 1);
  94. font-size: 12px;
  95. justify-content: space-between;
  96. margin-top: 24rpx;
  97. font-family: 'Regular';
  98. }
  99. }
  100. }
  101. </style>