my-chasingFun-card.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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="info.cover" 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">{{ !!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/shangcikandao.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. export default {
  31. name: "MyChasingFunCard",
  32. components: { CardBox },
  33. props: {
  34. info: {
  35. type: Object,
  36. },
  37. manageType: {
  38. type: Boolean,
  39. default: false,
  40. },
  41. },
  42. data() {
  43. return {};
  44. },
  45. computed: {
  46. btnList() {
  47. let arr = [{ type: "del", value: "取消追番" }];
  48. return this.manageType ? [] : arr;
  49. },
  50. },
  51. mounted() {},
  52. };
  53. </script>
  54. <style lang="scss" scoped>
  55. .card {
  56. width: 100%;
  57. user-select: none;
  58. .card-box {
  59. background: white;
  60. border-radius: 12px;
  61. padding: 20px 20px;
  62. height: 240px;
  63. display: flex;
  64. justify-content: space-between;
  65. align-items: center;
  66. > .left {
  67. width: 360px;
  68. height: 200px;
  69. position: relative;
  70. img {
  71. width: 100%;
  72. height: 100%;
  73. }
  74. .lapse {
  75. width: 100%;
  76. height: 100%;
  77. background-color: #d8d8d8;
  78. display: flex;
  79. align-items: center;
  80. justify-content: center;
  81. img {
  82. width: 70px;
  83. height: 70px;
  84. }
  85. }
  86. .type {
  87. height: 24px;
  88. line-height: 24px;
  89. padding: 0 10px;
  90. font-size: 12px;
  91. font-weight: 400;
  92. color: #ffffff;
  93. background: rgba(20, 20, 20, 0.6);
  94. border-radius: 4px;
  95. position: absolute;
  96. right: 10px;
  97. bottom: 15px;
  98. }
  99. }
  100. .right {
  101. width: calc(100% - 380px);
  102. height: 200px;
  103. margin-left: 20px;
  104. display: flex;
  105. flex-direction: column;
  106. justify-content: space-between;
  107. .title {
  108. font-size: 20px;
  109. font-weight: 400;
  110. color: #222222;
  111. width: 90%;
  112. white-space: nowrap;
  113. overflow: hidden;
  114. text-overflow: ellipsis;
  115. }
  116. .info {
  117. width: calc(100% - 30px);
  118. background: #f3f3f3;
  119. border-radius: 6px;
  120. height: 40px;
  121. display: flex;
  122. align-items: center;
  123. justify-content: space-between;
  124. padding: 0 15px;
  125. .left {
  126. font-size: 14px;
  127. font-weight: 400;
  128. color: #333333;
  129. display: flex;
  130. align-items: center;
  131. .icon {
  132. width: 14px;
  133. height: 14px;
  134. }
  135. }
  136. .num {
  137. font-size: 14px;
  138. font-weight: 400;
  139. color: #333333;
  140. }
  141. }
  142. }
  143. > .lapse {
  144. font-size: 20px;
  145. font-weight: 400;
  146. color: #999999;
  147. line-height: 200px;
  148. }
  149. }
  150. }
  151. </style>