123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- <template>
- <div class="card" @click="info.status == 1 ? $emit('handleToDetail') : ''">
- <CardBox class="card-box" :btnList="btnList" v-on="$listeners">
- <div class="left">
- <img :src="fileIcon" alt="" v-if="is_normal" />
- <div class="is_normal" v-else>
- <img src="@/assets/icon/lapse.png" alt="" />
- <div class="mark">已失效</div>
- </div>
- <div
- class="type"
- :style="{
- background:
- info.status !== undefined
- ? status[info.status].color
- : status[1].color,
- }"
- v-if="is_normal"
- >
- {{
- info.status !== undefined
- ? status[info.status].label
- : status[1].label
- }}
- </div>
- </div>
- <div class="right">
- <div class="title">{{ info.title }}</div>
- <div class="label" v-if="!!info.label">
- <div class="label-item" v-for="item in info.label.split(',')">
- {{ item }}
- </div>
- </div>
- <div class="info">
- <img class="icon" src="@/assets/icon/liulanliang.png" />
- <div class="num">{{ info.read_num || 0 }}</div>
- <div class="time">{{ info.create_at }}</div>
- </div>
- </div>
- </CardBox>
- </div>
- </template>
- <script>
- import CardBox from "../card-module/card-box.vue";
- import { getFileIcon, getFileType } from "@/common/util";
- export default {
- name: "MyReleaseFunCard",
- components: { CardBox },
- props: {
- info: {
- type: Object,
- },
- },
- data() {
- return {
- status: {
- 0: { label: "待审核", color: "#FE9641" },
- 1: { label: "审核通过", color: "#15C393" },
- 2: { label: "审核未通过", color: "#E84537" },
- },
- };
- },
- computed: {
- btnList() {
- let arr =
- this.info.status !== undefined
- ? this.info.status == 1
- ? [{ type: "del", value: "下架" }]
- : ["del"]
- : [{ type: "del", value: "下架" }];
- return arr;
- },
- is_normal() {
- return Reflect.has(this.info, "is_normal") ? !!this.info.is_normal : true;
- },
- fileType() {
- return getFileType(this.info.url || this.info.datum_url || "");
- },
- fileIcon() {
- return getFileIcon(`${this.fileType}_bg`);
- },
- },
- mounted() {},
- };
- </script>
- <style lang="scss" scoped>
- .card {
- width: 100%;
- user-select: none;
- .card-box {
- background: white;
- border-radius: 12px;
- padding: 20px 20px;
- height: 160px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- > .left {
- width: 120px;
- height: 120px;
- position: relative;
- img {
- width: 100%;
- height: 100%;
- border-radius: 6px;
- object-fit: cover;
- }
- .type {
- height: 24px;
- line-height: 24px;
- padding: 0 10px;
- font-size: 12px;
- font-weight: 400;
- color: #ffffff;
- border-radius: 6px 0px 6px 0px;
- position: absolute;
- left: 0;
- top: 0;
- }
- .is_normal {
- width: 100%;
- height: 100%;
- background: #d8d8d8;
- display: flex;
- align-items: center;
- justify-content: center;
- position: relative;
- img {
- width: 20px;
- height: 20px;
- }
- .mark {
- height: 18px;
- padding: 0 5px;
- font-size: 12px;
- font-weight: 400;
- color: #ffffff;
- line-height: 18px;
- text-align: center;
- background: rgba(0, 0, 0, 0.7);
- border-radius: 2px;
- position: absolute;
- bottom: 10px;
- right: 10px;
- }
- }
- }
- .right {
- width: calc(100% - 140px);
- height: 120px;
- 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;
- }
- .label {
- display: flex;
- flex-wrap: wrap;
- align-items: center;
- .label-item {
- height: 24px;
- background: #f4f7ff;
- border-radius: 2px;
- line-height: 24px;
- text-align: center;
- font-size: 12px;
- font-weight: 400;
- color: #2a63f3;
- padding: 0 5px;
- margin-right: 5px;
- }
- }
- .info {
- width: calc(100% - 30px);
- display: flex;
- align-items: center;
- font-size: 12px;
- color: #666666;
- .icon {
- width: 14px;
- height: 14px;
- }
- .num {
- width: 40px;
- margin-left: 5px;
- }
- }
- .is_normal {
- width: 100%;
- height: 100%;
- text-align: left;
- line-height: 114px;
- color: #999999;
- font-size: 14px;
- }
- }
- }
- }
- </style>
|