feat: 实现商品详情页、用户信息页面和搜索功能
refactor: 重构商品列表和主页布局 style: 优化UI组件样式和交互效果 docs: 更新类型定义和路由配置 fix: 修复购物车商品重复问题 perf: 提升页面加载性能和响应速度 test: 添加商品详情页和搜索功能的测试用例 build: 更新依赖项以支持新功能 chore: 清理无用代码和文件
This commit is contained in:
29
src/Views/User/Userinfo.vue
Normal file
29
src/Views/User/Userinfo.vue
Normal file
@@ -0,0 +1,29 @@
|
||||
<!-- 用户信息 -->
|
||||
<!-- 布局 从上到下 user信息:用户头像 用户名 -->
|
||||
<template>
|
||||
<div class="user-info">
|
||||
<div class="user-info-top">
|
||||
<div class="user-avatar">
|
||||
<!-- <img :src="user.avatar" alt="用户头像"> -->
|
||||
</div>
|
||||
<div class="user-name">
|
||||
<div>用户名:</div>
|
||||
<div>关注店铺 收货地址</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="user-info-main">
|
||||
<div>
|
||||
购物信息 :购物车 待收货 代发货 待付款
|
||||
</div>
|
||||
<div>
|
||||
订单信息 :已完成 待评价 待付款 待发货
|
||||
</div>
|
||||
<div>
|
||||
优惠 :红包 优惠卷 淘币
|
||||
</div>
|
||||
<div>
|
||||
足迹信息 : 已买完 收藏夹 购买过的店 足迹信息
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
Reference in New Issue
Block a user