对接数据

This commit is contained in:
2025-10-24 15:45:38 +08:00
parent 672a2f4c90
commit d3375a347f
138 changed files with 16904 additions and 1026 deletions

View File

@ -0,0 +1,63 @@
<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>