my-release-card.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  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="fileIcon" 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>
  27. <div class="right">
  28. <div class="title">{{ info.title }}</div>
  29. <div class="label" v-if="!!info.label">
  30. <div class="label-item" v-for="item in info.label.split(',')">
  31. {{ item }}
  32. </div>
  33. </div>
  34. <div class="info">
  35. <img class="icon" src="@/assets/icon/liulanliang.png" />
  36. <div class="num">{{ info.read_num || 0 }}</div>
  37. <div class="time">{{ info.create_at }}</div>
  38. </div>
  39. </div>
  40. </CardBox>
  41. </div>
  42. </template>
  43. <script>
  44. import CardBox from "../card-module/card-box.vue";
  45. import { getFileIcon, getFileType } from "@/common/util";
  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. fileType() {
  77. return getFileType(this.info.url || this.info.datum_url || "");
  78. },
  79. fileIcon() {
  80. return getFileIcon(`${this.fileType}_bg`);
  81. },
  82. },
  83. mounted() {},
  84. };
  85. </script>
  86. <style lang="scss" scoped>
  87. .card {
  88. width: 100%;
  89. user-select: none;
  90. .card-box {
  91. background: white;
  92. border-radius: 12px;
  93. padding: 20px 20px;
  94. height: 160px;
  95. display: flex;
  96. justify-content: space-between;
  97. align-items: center;
  98. > .left {
  99. width: 120px;
  100. height: 120px;
  101. position: relative;
  102. img {
  103. width: 100%;
  104. height: 100%;
  105. border-radius: 6px;
  106. object-fit: cover;
  107. }
  108. .type {
  109. height: 24px;
  110. line-height: 24px;
  111. padding: 0 10px;
  112. font-size: 12px;
  113. font-weight: 400;
  114. color: #ffffff;
  115. border-radius: 6px 0px 6px 0px;
  116. position: absolute;
  117. left: 0;
  118. top: 0;
  119. }
  120. .is_normal {
  121. width: 100%;
  122. height: 100%;
  123. background: #d8d8d8;
  124. display: flex;
  125. align-items: center;
  126. justify-content: center;
  127. position: relative;
  128. img {
  129. width: 20px;
  130. height: 20px;
  131. }
  132. .mark {
  133. height: 18px;
  134. padding: 0 5px;
  135. font-size: 12px;
  136. font-weight: 400;
  137. color: #ffffff;
  138. line-height: 18px;
  139. text-align: center;
  140. background: rgba(0, 0, 0, 0.7);
  141. border-radius: 2px;
  142. position: absolute;
  143. bottom: 10px;
  144. right: 10px;
  145. }
  146. }
  147. }
  148. .right {
  149. width: calc(100% - 140px);
  150. height: 120px;
  151. margin-left: 20px;
  152. display: flex;
  153. flex-direction: column;
  154. justify-content: space-between;
  155. .title {
  156. font-size: 20px;
  157. font-weight: 400;
  158. color: #222222;
  159. width: 90%;
  160. white-space: nowrap;
  161. overflow: hidden;
  162. text-overflow: ellipsis;
  163. }
  164. .label {
  165. display: flex;
  166. flex-wrap: wrap;
  167. align-items: center;
  168. .label-item {
  169. height: 24px;
  170. background: #f4f7ff;
  171. border-radius: 2px;
  172. line-height: 24px;
  173. text-align: center;
  174. font-size: 12px;
  175. font-weight: 400;
  176. color: #2a63f3;
  177. padding: 0 5px;
  178. margin-right: 5px;
  179. }
  180. }
  181. .info {
  182. width: calc(100% - 30px);
  183. display: flex;
  184. align-items: center;
  185. font-size: 12px;
  186. color: #666666;
  187. .icon {
  188. width: 14px;
  189. height: 14px;
  190. }
  191. .num {
  192. width: 40px;
  193. margin-left: 5px;
  194. }
  195. }
  196. .is_normal {
  197. width: 100%;
  198. height: 100%;
  199. text-align: left;
  200. line-height: 114px;
  201. color: #999999;
  202. font-size: 14px;
  203. }
  204. }
  205. }
  206. }
  207. </style>