my-release-card.vue 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. <template>
  2. <div class="card" @click="info.status == 1 ? $emit('handleToDetail') : ''">
  3. <CardBox class="card-box" :btnList="btnList" v-on="$listeners">
  4. <div class="left">
  5. <img :src="info.cover" alt="" v-if="is_normal" />
  6. <div class="is_normal" v-else>
  7. <img src="@/assets/icon/lapse.png" alt="" />
  8. <div class="mark">已失效</div>
  9. </div>
  10. <div
  11. class="type"
  12. :style="{
  13. background:
  14. info.status !== undefined
  15. ? status[info.status].color
  16. : status[1].color,
  17. }"
  18. v-if="is_normal"
  19. >
  20. {{
  21. info.status !== undefined
  22. ? status[info.status].label
  23. : status[1].label
  24. }}
  25. </div>
  26. <div class="mark">图文</div>
  27. </div>
  28. <div class="right">
  29. <div class="title">{{ info.title }}</div>
  30. <div class="label" v-if="!!info.label">
  31. <div class="label-item" v-for="item in info.label.split(',')">
  32. {{ item }}
  33. </div>
  34. </div>
  35. <div class="info">
  36. <img class="icon" src="@/assets/icon/浏览量.png" />
  37. <div class="num">{{ info.read_num || 0 }}</div>
  38. <div class="time">{{ info.create_at }}</div>
  39. </div>
  40. </div>
  41. </CardBox>
  42. </div>
  43. </template>
  44. <script>
  45. import CardBox from "../card-module/card-box.vue";
  46. export default {
  47. name: "MyReleaseFunCard",
  48. components: { CardBox },
  49. props: {
  50. info: {
  51. type: Object,
  52. },
  53. },
  54. data() {
  55. return {
  56. status: {
  57. 0: { label: "待审核", color: "#FE9641" },
  58. 1: { label: "审核通过", color: "#15C393" },
  59. 2: { label: "审核未通过", color: "#E84537" },
  60. },
  61. };
  62. },
  63. computed: {
  64. btnList() {
  65. let arr =
  66. this.info.status !== undefined
  67. ? this.info.status == 1
  68. ? [{ type: "del", value: "下架" }]
  69. : ["del"]
  70. : [{ type: "del", value: "下架" }];
  71. return arr;
  72. },
  73. is_normal() {
  74. return Reflect.has(this.info, "is_normal") ? !!this.info.is_normal : true;
  75. },
  76. },
  77. mounted() {},
  78. };
  79. </script>
  80. <style lang="scss" scoped>
  81. .card {
  82. width: 100%;
  83. user-select: none;
  84. .card-box {
  85. background: white;
  86. border-radius: 12px;
  87. padding: 20px 20px;
  88. height: 160px;
  89. display: flex;
  90. justify-content: space-between;
  91. align-items: center;
  92. > .left {
  93. width: 200px;
  94. height: 120px;
  95. position: relative;
  96. img {
  97. width: 100%;
  98. height: 100%;
  99. border-radius: 6px;
  100. object-fit: cover;
  101. }
  102. .type {
  103. height: 24px;
  104. line-height: 24px;
  105. padding: 0 10px;
  106. font-size: 12px;
  107. font-weight: 400;
  108. color: #ffffff;
  109. border-radius: 6px 0px 6px 0px;
  110. position: absolute;
  111. left: 0;
  112. top: 0;
  113. }
  114. .is_normal {
  115. width: 100%;
  116. height: 100%;
  117. background: #d8d8d8;
  118. display: flex;
  119. align-items: center;
  120. justify-content: center;
  121. position: relative;
  122. img {
  123. width: 20px;
  124. height: 20px;
  125. }
  126. .mark {
  127. height: 18px;
  128. padding: 0 5px;
  129. font-size: 12px;
  130. font-weight: 400;
  131. color: #ffffff;
  132. line-height: 18px;
  133. text-align: center;
  134. background: rgba(0, 0, 0, 0.7);
  135. border-radius: 2px;
  136. position: absolute;
  137. bottom: 10px;
  138. right: 10px;
  139. }
  140. }
  141. .mark {
  142. padding: 0 3px;
  143. height: 18px;
  144. font-size: 12px;
  145. font-weight: 400;
  146. color: #ffffff;
  147. line-height: 18px;
  148. text-align: center;
  149. background: rgba(0, 0, 0, 0.7);
  150. border-radius: 2px;
  151. position: absolute;
  152. bottom: 10px;
  153. right: 10px;
  154. }
  155. }
  156. .right {
  157. width: calc(100% - 220px);
  158. height: 120px;
  159. margin-left: 20px;
  160. display: flex;
  161. flex-direction: column;
  162. justify-content: space-between;
  163. .title {
  164. font-size: 20px;
  165. font-weight: 400;
  166. color: #222222;
  167. width: 90%;
  168. white-space: nowrap;
  169. overflow: hidden;
  170. text-overflow: ellipsis;
  171. }
  172. .label {
  173. display: flex;
  174. flex-wrap: wrap;
  175. align-items: center;
  176. .label-item {
  177. height: 24px;
  178. background: #f4f7ff;
  179. border-radius: 2px;
  180. line-height: 24px;
  181. text-align: center;
  182. font-size: 12px;
  183. font-weight: 400;
  184. color: #2a63f3;
  185. padding: 0 5px;
  186. margin-right: 5px;
  187. }
  188. }
  189. .info {
  190. width: calc(100% - 30px);
  191. display: flex;
  192. align-items: center;
  193. font-size: 12px;
  194. color: #666666;
  195. .icon {
  196. width: 14px;
  197. height: 14px;
  198. }
  199. .num {
  200. width: 40px;
  201. margin-left: 5px;
  202. }
  203. }
  204. .is_normal {
  205. width: 100%;
  206. height: 100%;
  207. text-align: left;
  208. line-height: 114px;
  209. color: #999999;
  210. font-size: 14px;
  211. }
  212. }
  213. }
  214. }
  215. </style>