- 后台全面引入 Naive UI 组件库,统一 UI 规范 - 前台 usePublicApi 切换到 API 调用(GET /api/content/[key]) - 前后台数据源统一(site_content 表) - 产品线统一管理(tour/camp/course 三套编辑器) - 产品数据归一化(itinerary/faq/pricing 格式统一) - 表单提交 API 改写入 submissions 表 - 新增 submissions 标记已读 API - site-content PUT 支持 upsert - 修复前台 bug(stories 路由冲突、占位符警告、selector breadcrumb) - 消除 PageHero 类型警告(useSEO reactive 修复) - 25 个前台页面全部 HTTP 200,展示效果不变 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
79 行
2.0 KiB
Vue
79 行
2.0 KiB
Vue
<template>
|
|
<section class="section section--warm">
|
|
<div class="container">
|
|
<CommonSectionTitle title="产品进化" subtitle="从V1到V9,每一次更新都是客户反馈驱动" />
|
|
<div class="evo-stats">
|
|
<div class="evo-stat">
|
|
<span class="evo-stat-num">{{ stats.iterations }}</span>
|
|
<span class="evo-stat-label">次迭代</span>
|
|
</div>
|
|
<div class="evo-stat">
|
|
<span class="evo-stat-num">{{ stats.years }}</span>
|
|
<span class="evo-stat-label">年打磨</span>
|
|
</div>
|
|
<div class="evo-stat">
|
|
<span class="evo-stat-num">{{ stats.guests }}</span>
|
|
<span class="evo-stat-label">人次体验</span>
|
|
</div>
|
|
</div>
|
|
<p class="evo-intro">2023年3月,呼籁做了一个"反常识"的决定——只做一条路线。不铺量、不贪多,把所有精力集中在打磨一个产品上。三年9次迭代,每一次版本更新背后,都有真实的客户反馈和一线体验数据。</p>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
|
|
<script setup>
|
|
defineProps({
|
|
stats: { type: Object, required: true }
|
|
})
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.evo-stats {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: @space-2xl;
|
|
margin-bottom: @space-xl;
|
|
}
|
|
|
|
.evo-stat {
|
|
text-align: center;
|
|
}
|
|
|
|
.evo-stat-num {
|
|
display: inline-block;
|
|
font-size: @font-size-3xl;
|
|
font-weight: @font-weight-bold;
|
|
color: @color-primary;
|
|
line-height: @line-height-tight;
|
|
position: relative;
|
|
|
|
&::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: -2px;
|
|
left: 10%;
|
|
right: 10%;
|
|
height: 3px;
|
|
background: @color-primary-lighter;
|
|
border-radius: 2px;
|
|
}
|
|
}
|
|
|
|
.evo-stat-label {
|
|
display: block;
|
|
margin-top: @space-sm;
|
|
font-size: @font-size-sm;
|
|
color: @color-text-muted;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.evo-intro {
|
|
max-width: 700px;
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
font-size: @font-size-base;
|
|
color: @color-text-secondary;
|
|
line-height: @line-height-loose;
|
|
}
|
|
</style>
|