64 lines
1.3 KiB
Vue
64 lines
1.3 KiB
Vue
<template>
|
|
<div class="item">
|
|
<div class="flex items-center">
|
|
<img class="icon" :src="item.iconUrl || ''" alt="" />
|
|
<div class="flex-1 flex flex-col justify-between">
|
|
<div class="title">{{ item.title || '' }}</div>
|
|
<div class="flex items-center" style="gap: 30px">
|
|
<div class="flex items-center data" style="gap: 12px">
|
|
<img alt="" src="/launches/detail/icon_thumb.png" style="width: 24px; height: 24px;" />
|
|
<div>{{ item.likeCount || 0 }}</div>
|
|
</div>
|
|
<div class="flex items-center data" style="gap: 12px">
|
|
<img alt="" src="/launches/detail/icon_star.png" style="width: 24px; height: 24px;" />
|
|
<div>{{ item.rating || 0 }}</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="summary">{{ item.summary || '' }}</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
item: {
|
|
type: Object,
|
|
default: () => ({})
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
}
|
|
},
|
|
methods: {},
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.item {
|
|
.icon {
|
|
width: 70px;
|
|
height: 70px;
|
|
border-radius: 6px;
|
|
margin-right: 20px;
|
|
}
|
|
.title {
|
|
font-family: 'Poppins-SemiBold', serif;
|
|
font-size: 24px;
|
|
color: #1E293B;
|
|
font-weight: 600;
|
|
}
|
|
.data {
|
|
font-family: 'Poppins-Regular', serif;
|
|
color: #64748B;
|
|
}
|
|
.summary {
|
|
font-family: 'Poppins-Regular', serif;
|
|
color: #64748B;
|
|
margin-top: 12px;
|
|
}
|
|
}
|
|
</style>
|