my-chasingFun-card.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. <template>
  2. <div class="card" @click="info.is_normal ? $emit('handleToDetail') : ''">
  3. <CardBox class="card-box" :btnList="btnList" v-on="$listeners">
  4. <div class="left">
  5. <img :src="fileIcon" alt="" v-if="!!info.is_normal" />
  6. <div class="lapse" v-else>
  7. <img src="@/assets/icon/lapse.png" alt="" />
  8. </div>
  9. <div class="type" v-if="!info.is_normal">已失效</div>
  10. </div>
  11. <div class="right" v-if="!!info.is_normal">
  12. <div class="title">{{ info.title }}</div>
  13. <div class="info">
  14. <div class="left">
  15. <img class="icon" src="@/assets/icon/上次看到.png" alt="" />
  16. <div class="last" v-if="info.recently_title">
  17. 上次看到:{{ info.recently_title }}
  18. </div>
  19. <div class="last" v-else>尚未观看</div>
  20. </div>
  21. <div class="num">{{ info.total_sequel }}集</div>
  22. </div>
  23. </div>
  24. <div class="right lapse" v-else>已失效</div>
  25. </CardBox>
  26. </div>
  27. </template>
  28. <script>
  29. import CardBox from "../card-module/card-box.vue";
  30. import { getFileIcon } from "@/common/util";
  31. export default {
  32. name: "MyChasingFunCard",
  33. components: { CardBox },
  34. props: {
  35. info: {
  36. type: Object,
  37. },
  38. manageType: {
  39. type: Boolean,
  40. default: false,
  41. },
  42. },
  43. data() {
  44. return {};
  45. },
  46. computed: {
  47. btnList() {
  48. let arr = [{ type: "del", value: "取消订阅" }];
  49. return this.manageType ? [] : arr;
  50. },
  51. fileIcon() {
  52. return getFileIcon(`folder_bg`);
  53. },
  54. },
  55. mounted() {},
  56. };
  57. </script>
  58. <style lang="scss" scoped>
  59. .card {
  60. width: 100%;
  61. user-select: none;
  62. .card-box {
  63. background: white;
  64. border-radius: 12px;
  65. padding: 20px 20px;
  66. height: 240px;
  67. display: flex;
  68. justify-content: space-between;
  69. align-items: center;
  70. > .left {
  71. width: 200px;
  72. height: 200px;
  73. position: relative;
  74. img {
  75. width: 100%;
  76. height: 100%;
  77. }
  78. .lapse {
  79. width: 100%;
  80. height: 100%;
  81. background-color: #d8d8d8;
  82. display: flex;
  83. align-items: center;
  84. justify-content: center;
  85. img {
  86. width: 70px;
  87. height: 70px;
  88. }
  89. }
  90. .type {
  91. height: 24px;
  92. line-height: 24px;
  93. padding: 0 10px;
  94. font-size: 12px;
  95. font-weight: 400;
  96. color: #ffffff;
  97. background: rgba(20, 20, 20, 0.6);
  98. border-radius: 4px;
  99. position: absolute;
  100. right: 10px;
  101. bottom: 15px;
  102. }
  103. }
  104. .right {
  105. width: calc(100% - 220px);
  106. height: 200px;
  107. margin-left: 20px;
  108. display: flex;
  109. flex-direction: column;
  110. justify-content: space-between;
  111. .title {
  112. font-size: 20px;
  113. font-weight: 400;
  114. color: #222222;
  115. width: 90%;
  116. white-space: nowrap;
  117. overflow: hidden;
  118. text-overflow: ellipsis;
  119. }
  120. .info {
  121. width: calc(100% - 30px);
  122. background: #f3f3f3;
  123. border-radius: 6px;
  124. height: 40px;
  125. display: flex;
  126. align-items: center;
  127. justify-content: space-between;
  128. padding: 0 15px;
  129. .left {
  130. font-size: 14px;
  131. font-weight: 400;
  132. color: #333333;
  133. display: flex;
  134. align-items: center;
  135. .icon {
  136. width: 14px;
  137. height: 14px;
  138. }
  139. }
  140. .num {
  141. font-size: 14px;
  142. font-weight: 400;
  143. color: #333333;
  144. }
  145. }
  146. }
  147. > .lapse {
  148. font-size: 20px;
  149. font-weight: 400;
  150. color: #999999;
  151. line-height: 200px;
  152. }
  153. }
  154. }
  155. </style>