feat(路由): 添加用户和聊天页面路由

style(页脚): 更新版权信息和样式,添加链接和响应式设计

style(全局样式): 引入CSS变量,统一设计系统

refactor(主页面): 使用CSS变量优化样式,提升可维护性

style(购物车): 应用CSS变量,优化交互效果和动画

feat(头部导航): 增强用户信息展示和搜索类型切换动画

feat(聊天页面): 新增聊天功能界面,支持用户列表和消息交互

feat(用户信息): 重构用户信息页面,添加订单状态和功能菜单
This commit is contained in:
qingfeng1121
2026-01-12 13:56:17 +08:00
parent 0c07d33bf9
commit c287650fbb
9 changed files with 3685 additions and 220 deletions

View File

@@ -7,6 +7,8 @@ import Search from '../Views/Search.vue'
import ProductDetail from '../Views/product/productdetil.vue'
import Cart from '../Views/Cart.vue'
import Order from '../Views/Order.vue'
import User from '../Views/User/User.vue'
import Chat from '../Views/Chat.vue'
@@ -41,6 +43,17 @@ const routes = [
name: 'order',
component: Order
},
{
path: '/user',
name: 'user',
component: User
},
{
path: '/chat',
name: 'chat',
component: Chat
},
]
const router = createRouter({