myLike.vue 2.0 KB

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