activityReward.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <template>
  2. <view>
  3. <u-navbar title="活动奖励"></u-navbar>
  4. <view class="main">
  5. <view class="reward-detail">
  6. <view class="content">
  7. <view class="title">
  8. 2023年度春季职工运动会活动奖励公示
  9. </view>
  10. <view class="tag">
  11. <view class="item">
  12. 工会活动
  13. </view>
  14. </view>
  15. </view>
  16. <view class="picture">
  17. <img src="../../../assets/img/sharePic2.png" alt="">
  18. </view>
  19. </view>
  20. <view class="reward-detail">
  21. <view class="content">
  22. <view class="title">
  23. 2023庆祝建党节书法作品大赛活动奖励公示
  24. </view>
  25. <view class="tag">
  26. <view class="item item1">
  27. 党建活动
  28. </view>
  29. </view>
  30. </view>
  31. <view class="picture">
  32. <img src="../../../assets/img/sharePic2.png" alt="">
  33. </view>
  34. </view>
  35. </view>
  36. <u-divider bg-color="#F2F4F4" border-color="#CFD2D5">已经到底了</u-divider>
  37. </view>
  38. </template>
  39. <script>
  40. export default {
  41. data() {
  42. return {
  43. }
  44. },
  45. methods: {
  46. }
  47. }
  48. </script>
  49. <style lang="scss">
  50. .main{
  51. font-family: 'Medium';
  52. padding: 24rpx 32rpx 0 32rpx;
  53. .reward-detail{
  54. background-color: #fff;
  55. padding: 24rpx;
  56. display: flex;
  57. justify-content: space-between;
  58. margin-bottom: 24rpx;
  59. .content{
  60. display: flex;
  61. justify-content: space-between;
  62. flex-direction: column;
  63. margin-right:24rpx;
  64. .title{
  65. color: rgba(51, 51, 51, 1);
  66. font-size: 16px;
  67. line-height: 23px;
  68. }
  69. .tag{
  70. display: flex;
  71. .item{
  72. margin-top: 32rpx;
  73. line-height: 48rpx;
  74. padding: 0 12rpx;
  75. border: 1px solid rgba(31, 74, 153, 1);
  76. color:rgba(31, 74, 153, 1) ;
  77. border-radius: 8rpx;
  78. font-size: 24rpx;
  79. text-align: center;
  80. }
  81. .item1{
  82. border: 1px solid rgba(238, 49, 56, 1);
  83. color:rgba(238, 49, 56, 1) ;
  84. }
  85. }
  86. }
  87. .picture{
  88. width: 224rpx;
  89. height: 86px;
  90. border-radius:5px ;
  91. img{
  92. width: 100%;
  93. height: 100%;
  94. }
  95. }
  96. }
  97. }
  98. </style>