feat(kol): marketplace + package detail views

This commit is contained in:
2026-04-17 14:30:47 +08:00
parent 2a2489ce5c
commit d0747825e6
5 changed files with 819 additions and 14 deletions
@@ -0,0 +1,156 @@
<script setup lang="ts">
import { UserOutlined, TagOutlined, TeamOutlined, ThunderboltOutlined } from "@ant-design/icons-vue";
import type { KolPackageSummary } from "@geo/shared-types";
import { useI18n } from "vue-i18n";
const props = defineProps<{
package: KolPackageSummary;
}>();
const emit = defineEmits<{
(e: "click", id: number): void;
}>();
const { t } = useI18n();
function handleClick() {
emit("click", props.package.id);
}
</script>
<template>
<a-card hoverable class="kol-package-card" @click="handleClick">
<template #cover>
<div v-if="props.package.cover_url" class="card-cover-image">
<img alt="cover" :src="props.package.cover_url" />
</div>
<div v-else class="card-cover-fallback">
<ThunderboltOutlined class="fallback-icon" />
</div>
</template>
<a-card-meta>
<template #title>
<div class="card-title">
{{ props.package.name }}
</div>
</template>
<template #description>
<div class="card-description">
<div class="kol-info">
<a-avatar :src="props.package.kol_avatar_url" size="small">
<template #icon><UserOutlined /></template>
</a-avatar>
<span class="kol-name">{{ props.package.kol_display_name }}</span>
</div>
<div class="industry-badge" v-if="props.package.industry">
<a-tag color="blue">
<template #icon><TagOutlined /></template>
{{ props.package.industry }}
</a-tag>
</div>
<div class="stats">
<span class="stat-item">
<ThunderboltOutlined />
{{ t('kol.marketplace.prompts', { count: props.package.prompt_count }) }}
</span>
<span class="stat-item">
<TeamOutlined />
{{ t('kol.marketplace.subscribers', { count: props.package.subscriber_count }) }}
</span>
</div>
</div>
</template>
</a-card-meta>
</a-card>
</template>
<style scoped>
.kol-package-card {
border-radius: 12px;
overflow: hidden;
transition: all 0.3s;
height: 100%;
}
.kol-package-card:hover {
transform: translateY(-4px);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.card-cover-image {
height: 160px;
overflow: hidden;
}
.card-cover-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.card-cover-fallback {
height: 160px;
background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
display: flex;
align-items: center;
justify-content: center;
}
.fallback-icon {
font-size: 48px;
color: #bae0ff;
}
.card-title {
font-size: 16px;
font-weight: 600;
color: #1a1a1a;
margin-bottom: 8px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.card-description {
display: flex;
flex-direction: column;
gap: 12px;
}
.kol-info {
display: flex;
align-items: center;
gap: 8px;
}
.kol-name {
font-size: 14px;
color: #595959;
}
.industry-badge {
margin-top: 4px;
}
.stats {
display: flex;
gap: 16px;
font-size: 12px;
color: #8c8c8c;
margin-top: 4px;
}
.stat-item {
display: flex;
align-items: center;
gap: 4px;
}
:deep(.ant-card-body) {
padding: 16px;
}
:deep(.ant-card-meta-title) {
margin-bottom: 0;
}
</style>