feat: 伴游的调整

This commit is contained in:
2026-05-13 14:53:09 +08:00
parent 0f6d8f7ff1
commit 31d9adc579
6 changed files with 98 additions and 10 deletions

View File

@@ -168,6 +168,8 @@
<template v-else>
<ChatCardOther class="flex flex-justify-center" :text="item.msg">
<ChatGuide v-if="chatMsgList.length < 8" :hasMessage="chatMsgList.length > 1" />
<ActivityListComponent
v-if="
mainPageDataModel.activityList &&
@@ -176,8 +178,10 @@
:activityList="mainPageDataModel.activityList"
/>
<!-- 先不展示了,等后续有需求再加回来 false -->
<RecommendPostsComponent
v-if="
false &&
mainPageDataModel.recommendTheme &&
mainPageDataModel.recommendTheme.length > 0
"
@@ -223,6 +227,7 @@ import { MessageRole, MessageType, CompName, Command } from "@/model/ChatModel";
import HomeWelcome from "../HomeWelcome/index.vue";
import AiTabSwitch from "@/components/AiTabSwitch/index.vue";
import Discovery from "../../Discovery/index.vue";
import ChatGuide from "../ChatGuide/index.vue";
import ChatTopNavBar from "../ChatTopNavBar/index.vue";
import ChatCardAI from "../ChatCardAi/index.vue";