mineCollect.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. <template>
  2. <view>
  3. <statusBar :item="navBarData"></statusBar>
  4. <view class="collectBox">
  5. <view class="collect_length">
  6. <span>共3条收藏</span>
  7. </view>
  8. <view class="classBox" v-for="i in 3" :key="i">
  9. <view class="classTitle">
  10. <span>这里是教研室标题</span>
  11. <image src="../../static/mine/Collect_yellow.png" mode="aspectFill"></image>
  12. </view>
  13. <view class="classContent">
  14. <view class="contentLeft">
  15. <view class="constDate">
  16. <span class="manage">类型</span>
  17. <span>|</span>
  18. <span class="c_data">03月27日</span>
  19. <span class="c_time">21:07</span>
  20. </view>
  21. <view class="classIntro">
  22. <span>说明文字教研室简介,最多两行教研室简介教研室简介教研室简介教研室简介教研室简介</span>
  23. </view>
  24. </view>
  25. <view class="contentRight">
  26. <image src="../../static/mine/Collect_default.png" mode="aspectFill"></image>
  27. </view>
  28. </view>
  29. </view>
  30. </view>
  31. </view>
  32. </template>
  33. <script>
  34. export default {
  35. data() {
  36. return {
  37. navBarData: {
  38. title: '我的收藏',
  39. btn: 1
  40. },
  41. };
  42. }
  43. }
  44. </script>
  45. <style lang="scss">
  46. .collectBox {
  47. margin: 0 30rpx;
  48. .collect_length {
  49. width: 100%;
  50. height: 40rpx;
  51. font-size: 24rpx;
  52. font-weight: 400;
  53. color: #00000099;
  54. display: flex;
  55. align-items: center;
  56. margin-top: 6px;
  57. margin-bottom: 6px;
  58. }
  59. .classBox {
  60. width: 100%;
  61. height: 248rpx;
  62. background-color: #fff;
  63. border-radius: 20rpx;
  64. padding: 0 16rpx;
  65. margin-bottom: 8px;
  66. .classTitle {
  67. display: flex;
  68. padding-top: 15px;
  69. justify-content: space-between;
  70. margin-bottom: 6px;
  71. span {
  72. font-size: 32rpx;
  73. font-weight: 500;
  74. }
  75. image {
  76. width: 32rpx;
  77. height: 32rpx;
  78. }
  79. }
  80. .classContent {
  81. width: 100%;
  82. display: flex;
  83. justify-content: space-between;
  84. .contentLeft {
  85. display: flex;
  86. flex-direction: column;
  87. .constDate {
  88. display: flex;
  89. margin-bottom: 6px;
  90. span {
  91. color: #00000066;
  92. font-size: 24rpx;
  93. font-weight: 400;
  94. &.manage {
  95. border: 1px #00B2B6 solid;
  96. font-size: 10px;
  97. display: flex;
  98. white-space: nowrap;
  99. justify-content: center;
  100. align-items: center;
  101. padding: 1px 6px;
  102. border-radius: 3px;
  103. margin-right: 10rpx;
  104. color: #00B2B6;
  105. font-weight: 600;
  106. }
  107. &:nth-child(2) {
  108. color: #E7E7E7;
  109. ;
  110. margin-left: 4px;
  111. }
  112. &:nth-child(3) {
  113. margin-left: 6px;
  114. }
  115. &:nth-child(4) {
  116. margin-left: 6px;
  117. }
  118. }
  119. }
  120. .classIntro {
  121. width: 93%;
  122. span {
  123. color: #00000099;
  124. font-size: 28rpx;
  125. display: -webkit-box;
  126. word-break: break-all;
  127. text-overflow: ellipsis;
  128. overflow: hidden;
  129. -webkit-box-orient: vertical;
  130. -webkit-line-clamp: 2;
  131. /*设置 需要显示的行数*/
  132. line-height: 23px;
  133. }
  134. }
  135. }
  136. .contentRight {
  137. image {
  138. width: 182rpx;
  139. height: 132rpx;
  140. border-radius: 8rpx;
  141. }
  142. }
  143. }
  144. }
  145. }
  146. </style>