diff --git a/Front/.idea/.gitignore b/Front/.idea/.gitignore
deleted file mode 100644
index 35410ca..0000000
--- a/Front/.idea/.gitignore
+++ /dev/null
@@ -1,8 +0,0 @@
-# 默认忽略的文件
-/shelf/
-/workspace.xml
-# 基于编辑器的 HTTP 客户端请求
-/httpRequests/
-# Datasource local storage ignored files
-/dataSources/
-/dataSources.local.xml
diff --git a/Front/.idea/Front.iml b/Front/.idea/Front.iml
deleted file mode 100644
index 24643cc..0000000
--- a/Front/.idea/Front.iml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Front/.idea/modules.xml b/Front/.idea/modules.xml
deleted file mode 100644
index 213ab34..0000000
--- a/Front/.idea/modules.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Front/.idea/vcs.xml b/Front/.idea/vcs.xml
deleted file mode 100644
index 6c0b863..0000000
--- a/Front/.idea/vcs.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Front/vue-unilife/.vscode/extensions.json b/Front/vue-unilife/.vscode/extensions.json
deleted file mode 100644
index a7cea0b..0000000
--- a/Front/vue-unilife/.vscode/extensions.json
+++ /dev/null
@@ -1,3 +0,0 @@
-{
- "recommendations": ["Vue.volar"]
-}
diff --git a/Front/vue-unilife/FORUM_FEATURES.md b/Front/vue-unilife/FORUM_FEATURES.md
deleted file mode 100644
index 736a43d..0000000
--- a/Front/vue-unilife/FORUM_FEATURES.md
+++ /dev/null
@@ -1,120 +0,0 @@
-# 论坛功能完善记录
-
-## 已完成的功能
-
-### 1. 帖子点赞功能
-- ✅ 在帖子详情页面添加了点赞/取消点赞按钮
-- ✅ 在帖子列表页面为每个帖子添加了点赞按钮
-- ✅ 实时更新点赞数量和状态
-- ✅ 未登录用户点击点赞会提示登录
-- ✅ 在postStore中实现了likePost方法
-
-### 2. 评论系统
-- ✅ 创建了评论API接口 (`/src/api/comment.ts`)
-- ✅ 创建了完整的评论组件 (`/src/components/CommentSection.vue`)
-- ✅ 支持发表评论和回复评论
-- ✅ 支持评论的点赞和取消点赞
-- ✅ 支持删除自己的评论
-- ✅ 评论时间的友好显示(几分钟前、几小时前等)
-- ✅ 未登录用户会提示登录
-
-### 3. 个人中心系统
-- ✅ 完善了个人主页 (`/src/views/Home.vue`)
- - ✅ 真实的用户统计数据API接口
- - ✅ 最近发布帖子的展示
- - ✅ 加载状态和错误处理
- - ✅ 响应式设计
-- ✅ 创建了消息中心页面 (`/src/views/MessagesView.vue`)
- - ✅ 系统通知、评论回复、点赞通知分类
- - ✅ 消息已读/未读状态管理
- - ✅ 批量操作功能
-- ✅ 创建了设置页面 (`/src/views/SettingsView.vue`)
- - ✅ 通知设置
- - ✅ 隐私设置
- - ✅ 界面设置
- - ✅ 账户安全设置
- - ✅ 数据管理功能
-- ✅ 完善了个人帖子管理页面 (`/src/views/forum/MyPostsView.vue`)
-- ✅ 完善了账号管理页面 (`/src/views/AccountManager.vue`)
-
-### 4. 用户体验优化
-- ✅ 添加了加载状态和错误处理
-- ✅ 优化了UI布局和样式
-- ✅ 支持未登录用户浏览但限制互动功能
-- ✅ 完善了错误提示和成功提示
-- ✅ 响应式设计适配移动端
-
-## 技术实现
-
-### API接口
-- `POST /posts/{id}/like` - 点赞/取消点赞帖子
-- `GET /comments/post/{postId}` - 获取帖子评论列表
-- `POST /comments` - 发表评论
-- `DELETE /comments/{id}` - 删除评论
-- `POST /comments/{id}/like` - 点赞/取消点赞评论
-- `GET /users/stats` - 获取用户统计数据
-- `GET /users/recent-posts` - 获取用户最近帖子
-
-### 组件结构
-```
-个人中心布局 (PersonalLayout.vue)
-├── 个人主页 (Home.vue)
-│ ├── 用户统计卡片
-│ └── 最近帖子列表
-├── 账号管理 (AccountManager.vue)
-│ ├── 个人资料编辑
-│ └── 密码修改
-├── 我的帖子 (MyPostsView.vue)
-│ ├── 帖子列表
-│ └── 编辑/删除操作
-├── 消息中心 (MessagesView.vue)
-│ ├── 系统通知
-│ ├── 评论回复
-│ └── 点赞通知
-└── 设置 (SettingsView.vue)
- ├── 通知设置
- ├── 隐私设置
- ├── 界面设置
- └── 账户安全
-
-帖子列表页面 (PostListView.vue)
-├── 点赞按钮
-└── 帖子卡片交互
-
-帖子详情页面 (PostDetailView.vue)
-├── 点赞按钮
-└── 评论区组件 (CommentSection.vue)
- ├── 评论表单
- ├── 评论列表
- ├── 回复功能
- └── 评论点赞功能
-```
-
-### 状态管理
-- 在PostStore中添加了`likePost`方法
-- 在UserStore中完善了用户信息管理
-- 评论数据通过CommentSection组件本地管理
-
-## 数据流设计
-1. **用户统计数据**: API → UserStore → 个人主页显示
-2. **帖子点赞**: 用户点击 → PostStore处理 → API调用 → 状态更新
-3. **评论系统**: 用户操作 → CommentSection → API调用 → 界面更新
-4. **个人设置**: 用户修改 → 本地状态 → API保存 → 成功提示
-
-## 已解决的问题
-- ✅ 个人主页假数据问题
-- ✅ 消息中心页面缺失
-- ✅ 设置页面缺失
-- ✅ 用户统计数据获取
-- ✅ 帖子交互功能不完整
-- ✅ 响应式布局适配
-
-## 待开发功能(建议)
-- 🔲 消息系统的后端API实现
-- 🔲 设置数据的持久化存储
-- 🔲 两步验证功能
-- 🔲 会话管理功能
-- 🔲 数据导出功能
-- 🔲 实时通知推送
-- 🔲 好友系统
-- 🔲 私信功能
\ No newline at end of file
diff --git a/Front/vue-unilife/README.md b/Front/vue-unilife/README.md
deleted file mode 100644
index 33895ab..0000000
--- a/Front/vue-unilife/README.md
+++ /dev/null
@@ -1,5 +0,0 @@
-# Vue 3 + TypeScript + Vite
-
-This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `
-