refactor: 全局重命名系统名称为社区生鲜团购系统

This commit is contained in:
2026-03-16 22:25:45 +08:00
parent f0c62d6fd7
commit 13b2e9f093
20 changed files with 39 additions and 36 deletions

View File

@@ -1,5 +1,5 @@
# 开发环境配置
VITE_APP_TITLE=秒杀系统
VITE_APP_TITLE=社区生鲜团购系统
VITE_API_BASE_URL=
VITE_WS_URL=ws://localhost:8080/ws
VITE_UPLOAD_URL=http://localhost:8080/upload

View File

@@ -1,5 +1,5 @@
# 生产环境配置
VITE_APP_TITLE=秒杀系统
VITE_APP_TITLE=社区生鲜团购系统
VITE_API_BASE_URL=https://api.flashsale.com
VITE_WS_URL=wss://api.flashsale.com/ws
VITE_UPLOAD_URL=https://api.flashsale.com/upload

View File

@@ -1,6 +1,6 @@
# 秒杀系统前端 (Flash Sale Frontend)
# 社区生鲜团购系统前端 (Flash Sale Frontend)
基于 Vue 3 + Vite + TypeScript 构建的现代化秒杀系统前端应用。
基于 Vue 3 + Vite + TypeScript 构建的现代化社区生鲜团购系统前端应用。
## 🚀 技术栈
@@ -20,7 +20,7 @@
### 用户端功能
- 🏠 **首页展示**: 轮播图、秒杀活动、热门商品推荐
- 🔐 **用户认证**: 登录、注册、个人中心管理
-**秒杀系统**: 实时倒计时、库存显示、防重复提交
-**秒杀抢购**: 实时倒计时、库存显示、防重复提交
- 🛍️ **商品浏览**: 分类筛选、价格排序、关键词搜索
- 🛒 **购物车**: 商品管理、批量操作、结算功能
- 📦 **订单管理**: 订单列表、详情查看、状态跟踪

View File

@@ -4,8 +4,8 @@
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>秒杀系统 - 高并发电商抢购平台</title>
<meta name="description" content="基于Redis集群构建的高并发秒杀系统,支持分布式锁、接口限流、库存预热等核心功能">
<title>社区生鲜团购系统</title>
<meta name="description" content="社区生鲜团购系统,支持分布式锁、接口限流、库存预热等核心功能">
<meta name="keywords" content="秒杀,抢购,电商,flash sale">
</head>
<body>

View File

@@ -6,7 +6,7 @@
<div>
<h3 class="text-lg font-semibold mb-4">关于我们</h3>
<p class="text-gray-600 text-sm">
基于Redis集群构建的高并发秒杀系统支持分布式锁接口限流库存预热等核心功能
社区生鲜团购系统支持分布式锁接口限流库存预热等核心功能
</p>
</div>
@@ -62,7 +62,7 @@
</div>
<div class="border-t mt-8 pt-8 text-center text-gray-500 text-sm">
<p>&copy; 2024 秒杀系统. All rights reserved.</p>
<p>&copy; 2024 社区生鲜团购系统. All rights reserved.</p>
</div>
</div>
</footer>

View File

@@ -8,7 +8,7 @@
<el-icon :size="24" class="brand-icon">
<Lightning />
</el-icon>
<span class="brand-title">秒杀系统</span>
<span class="brand-title">社区生鲜团购系统</span>
<span class="brand-tag">
FLASH SALE
</span>

View File

@@ -136,7 +136,7 @@
<div class="feature-card">
<el-icon :size="40" class="feature-icon mb-4"><Lightning /></el-icon>
<h3 class="text-lg font-semibold mb-2">秒杀抢购</h3>
<p class="text-gray-600">高并发秒杀系统支持大量用户同时抢购</p>
<p class="text-gray-600">社区生鲜团购系统支持大量用户同时抢购</p>
</div>
<div class="feature-card">
<el-icon :size="40" class="feature-icon mb-4"><Lock /></el-icon>
@@ -179,8 +179,8 @@ const userStore = useUserStore()
const banners = [
{
id: 1,
title: '秒杀系统',
subtitle: '基于Redis集群构建的高并发秒杀系统',
title: '社区生鲜团购系统',
subtitle: '社区生鲜团购系统,新鲜直达您身边',
buttonText: '立即抢购',
link: '/flashsales',
bgColor: '#ffffff',

View File

@@ -8,7 +8,7 @@
<Lightning />
</el-icon>
<h1 class="text-2xl font-bold text-gray-900">欢迎回来</h1>
<p class="text-gray-600 mt-2">登录到秒杀系统</p>
<p class="text-gray-600 mt-2">登录到社区生鲜团购系统</p>
</div>
<!-- 登录表单 -->

View File

@@ -8,7 +8,7 @@
<Lightning />
</el-icon>
<h1 class="text-2xl font-bold text-gray-900">创建账号</h1>
<p class="text-gray-600 mt-2">加入秒杀系统</p>
<p class="text-gray-600 mt-2">加入社区生鲜团购系统</p>
</div>
<!-- 注册表单 -->

View File

@@ -12,7 +12,7 @@ export function setupGuards(router: Router) {
}
// 设置页面标题
document.title = `${to.meta.title || '秒杀系统'} - 高并发电商抢购平台`
document.title = `${to.meta.title || '社区生鲜团购系统'} - 社区生鲜团购平台`
// 需要登录的页面
if (to.meta.requiresAuth && !userStore.isLoggedIn) {