{{ item.summary }}
+diff --git a/ai_knowledge_base_v2/apps/admin-web/src/App.vue b/ai_knowledge_base_v2/apps/admin-web/src/App.vue index 1eceeae..eb9596a 100644 --- a/ai_knowledge_base_v2/apps/admin-web/src/App.vue +++ b/ai_knowledge_base_v2/apps/admin-web/src/App.vue @@ -1571,6 +1571,38 @@ function formatRecordDateTime(value: string, boundary: "start" | "end") {
{{ topic.summary.summary }}
+ 主要事件{{ topic.summary.mainEvents }}
+情绪{{ topic.summary.emotions }}
+身体感受{{ topic.summary.bodyFeelings }}
+推荐功课{{ topic.summary.recommendedHomework }}
+下一步观察{{ topic.summary.nextObservation }}
+正在加载成长档案...
+ +{{ growthProfile.profile.profileText }}
+ 反复议题{{ growthProfile.profile.recurringTopics }}
+常见情绪{{ growthProfile.profile.commonEmotions }}
+身体感受{{ growthProfile.profile.bodyPatterns }}
+做过的功课{{ growthProfile.profile.homeworkDone }}
+最近进展{{ growthProfile.profile.recentProgress }}
+还没有成长档案。你可以在完成一次主题对话后点击“沉淀本主题”。
+{{ item.summary }}
+确定退出当前账号吗?
diff --git a/ai_knowledge_base_v2/apps/user-client/src/components/SessionQuota.vue b/ai_knowledge_base_v2/apps/user-client/src/components/SessionQuota.vue index 8259c10..bcd89dc 100644 --- a/ai_knowledge_base_v2/apps/user-client/src/components/SessionQuota.vue +++ b/ai_knowledge_base_v2/apps/user-client/src/components/SessionQuota.vue @@ -8,6 +8,12 @@ const props = defineProps<{ used: number; limit: number; entitlement?: UserEntitlementSummary | null; + finishing?: boolean; +}>(); + +defineEmits<{ + finishTopic: []; + openProfile: []; }>(); const hasEntitlement = computed(() => Boolean(props.entitlement)); @@ -25,6 +31,19 @@ const limitText = computed(() => displayLimit.value === null ? "不限" : String {{ title }} {{ entitlement?.name }} - {{ displayUsed }}/{{ limitText }} +