|
|
@@ -13,23 +13,17 @@
|
|
|
|
|
|
<!-- ===== 已登录状态 ===== -->
|
|
|
<template v-else>
|
|
|
- <!-- 品牌头部 -->
|
|
|
- <PageBanner theme="wealth" tagline="丰盈内心,富足生活,厚德载物" quote="" />
|
|
|
-
|
|
|
- <!-- 用户卡片 + 富沛能量 + 切换 -->
|
|
|
+ <!-- 用户卡片 -->
|
|
|
<ProfileHeader @avatar-click="goToEditInfo" />
|
|
|
|
|
|
- <!-- 行动数据 + 财富数据 -->
|
|
|
- <ProfileStats />
|
|
|
+ <!-- 成长报告 -->
|
|
|
+ <ProfileGrowth />
|
|
|
|
|
|
<!-- 成就徽章 -->
|
|
|
<ProfileBadges />
|
|
|
|
|
|
- <!-- 成长报告 -->
|
|
|
- <ProfileGrowth />
|
|
|
-
|
|
|
- <!-- 菜单列表 -->
|
|
|
- <ProfileMenu :role="role" @invite-generate="onInviteGenerate" />
|
|
|
+ <!-- 菜单列表(仅个人信息 + 设置,不含服务/商城板块) -->
|
|
|
+ <ProfileMenu :role="role" :show-services="false" @invite-generate="onInviteGenerate" />
|
|
|
</template>
|
|
|
<AIFloatingAvatar />
|
|
|
</view>
|
|
|
@@ -37,9 +31,7 @@
|
|
|
|
|
|
<script>
|
|
|
import TabTransition from '../../components/tab-transition.vue'
|
|
|
-import PageBanner from '../../components/PageBanner.vue'
|
|
|
import ProfileHeader from './components/ProfileHeader.vue'
|
|
|
-import ProfileStats from './components/ProfileStats.vue'
|
|
|
import ProfileBadges from './components/ProfileBadges.vue'
|
|
|
import ProfileGrowth from './components/ProfileGrowth.vue'
|
|
|
import ProfileMenu from './components/ProfileMenu.vue'
|
|
|
@@ -48,9 +40,7 @@ import AIFloatingAvatar from '../../components/AIFloatingAvatar.vue'
|
|
|
export default {
|
|
|
components: {
|
|
|
TabTransition,
|
|
|
- PageBanner,
|
|
|
ProfileHeader,
|
|
|
- ProfileStats,
|
|
|
ProfileBadges,
|
|
|
ProfileGrowth,
|
|
|
ProfileMenu,
|