123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- <template>
- <div class="card" @click="info.is_normal ? $emit('handleToDetail') : ''">
- <CardBox class="card-box" :btnList="btnList" v-on="$listeners">
- <div class="left">
- <img :src="info.cover" alt="" v-if="!!info.is_normal" />
- <div class="lapse" v-else>
- <img src="@/assets/icon/lapse.png" alt="" />
- </div>
- <div class="type">{{ !!info.is_normal ? "系列" : "已失效" }}</div>
- </div>
- <div class="right" v-if="!!info.is_normal">
- <div class="title">{{ info.title }}</div>
- <div class="info">
- <div class="left">
- <img class="icon" src="@/assets/icon/shangcikandao.png" alt="" />
- <div class="last" v-if="info.recently_title">
- 上次看到:{{ info.recently_title }}
- </div>
- <div class="last" v-else>尚未观看</div>
- </div>
- <div class="num">{{ info.total_sequel }}集</div>
- </div>
- </div>
- <div class="right lapse" v-else>已失效</div>
- </CardBox>
- </div>
- </template>
- <script>
- import CardBox from "../card-module/card-box.vue";
- export default {
- name: "MyChasingFunCard",
- components: { CardBox },
- props: {
- info: {
- type: Object,
- },
- manageType: {
- type: Boolean,
- default: false,
- },
- },
- data() {
- return {};
- },
- computed: {
- btnList() {
- let arr = [{ type: "del", value: "取消追番" }];
- return this.manageType ? [] : arr;
- },
- },
- mounted() {},
- };
- </script>
- <style lang="scss" scoped>
- .card {
- width: 100%;
- user-select: none;
- .card-box {
- background: white;
- border-radius: 12px;
- padding: 20px 20px;
- height: 240px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- > .left {
- width: 360px;
- height: 200px;
- position: relative;
- img {
- width: 100%;
- height: 100%;
- }
- .lapse {
- width: 100%;
- height: 100%;
- background-color: #d8d8d8;
- display: flex;
- align-items: center;
- justify-content: center;
- img {
- width: 70px;
- height: 70px;
- }
- }
- .type {
- height: 24px;
- line-height: 24px;
- padding: 0 10px;
- font-size: 12px;
- font-weight: 400;
- color: #ffffff;
- background: rgba(20, 20, 20, 0.6);
- border-radius: 4px;
- position: absolute;
- right: 10px;
- bottom: 15px;
- }
- }
- .right {
- width: calc(100% - 380px);
- height: 200px;
- margin-left: 20px;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- .title {
- font-size: 20px;
- font-weight: 400;
- color: #222222;
- width: 90%;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .info {
- width: calc(100% - 30px);
- background: #f3f3f3;
- border-radius: 6px;
- height: 40px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0 15px;
- .left {
- font-size: 14px;
- font-weight: 400;
- color: #333333;
- display: flex;
- align-items: center;
- .icon {
- width: 14px;
- height: 14px;
- }
- }
- .num {
- font-size: 14px;
- font-weight: 400;
- color: #333333;
- }
- }
- }
- > .lapse {
- font-size: 20px;
- font-weight: 400;
- color: #999999;
- line-height: 200px;
- }
- }
- }
- </style>
|