feat: NEXT Store 2.0 重大更新 - 完整重构前后端

🎉 主要更新:

后端:
- 全新华为应用市场爬虫系统
- 三表分离数据库设计 (app_info, app_metrics, app_rating)
- 完整的API接口 (搜索、分类、热门、上新等)
- 元服务自动识别和分类
- 智能Token管理和数据处理
- 修复热门应用重复显示问题

前端:
- 全新首页设计 (今日上架、热门应用)
- 应用页面 (彩色分类磁贴、智能图标匹配)
- 今日上新页面 (日期切换)
- 热门应用页面 (卡片布局)
- 应用详情页面 (完整信息展示)
- Apple风格搜索栏
- Footer组件
- 底部导航栏优化 (4个导航项)
- 骨架屏加载效果
- FontAwesome图标集成

UI/UX:
- 统一浅色背景 (#F5F5F7)
- 流畅的过渡动画
- 响应式设计
- 毛玻璃效果

文档:
- CHANGELOG.md - 完整更新日志
- QUICKSTART.md - 快速开始
- 多个技术文档和使用指南

版本: v2.0.0
This commit is contained in:
Nvex
2025-10-25 21:20:32 +08:00
parent c0f81dbbe2
commit 720402ffe7
38 changed files with 5682 additions and 407 deletions

View File

@@ -2,6 +2,7 @@
<div id="app">
<main class="main-content">
<router-view />
<Footer v-if="!isProfilePage" />
</main>
<nav class="bottom-nav">
<router-link to="/" class="nav-item">
@@ -19,6 +20,13 @@
</svg>
<span>应用</span>
</router-link>
<router-link to="/new_apps" class="nav-item">
<svg class="nav-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<circle cx="12" cy="12" r="10"/>
<polyline points="12 6 12 12 16 14"/>
</svg>
<span>上新</span>
</router-link>
<router-link to="/profile" class="nav-item">
<svg class="nav-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M4 6h16M4 12h16M4 18h16"/>
@@ -30,6 +38,12 @@
</template>
<script setup lang="ts">
import { computed } from 'vue'
import { useRoute } from 'vue-router'
import Footer from '@/components/Footer.vue'
const route = useRoute()
const isProfilePage = computed(() => route.path === '/profile')
</script>
<style scoped>
@@ -79,7 +93,7 @@
.main-content {
min-height: 100vh;
padding-bottom: 70px;
background: #fff;
background: #F5F5F7;
}
/* 确保在 Safari 上也有毛玻璃效果 */
@@ -91,7 +105,7 @@
@media (max-width: 768px) {
.nav-item {
padding: 4px 16px;
padding: 4px 12px;
}
.nav-icon {
@@ -103,4 +117,19 @@
font-size: 11px;
}
}
@media (max-width: 480px) {
.nav-item {
padding: 4px 8px;
}
.nav-icon {
width: 20px;
height: 20px;
}
.nav-item span {
font-size: 10px;
}
}
</style>