feat: 首页调整

This commit is contained in:
2026-01-19 17:48:04 +08:00
parent 0c0f5ec430
commit ddb92cd6d7
3 changed files with 12 additions and 19 deletions

View File

@@ -2,7 +2,7 @@
<main class="bg-[#f7f9fc] box-border w-full h-screen flex pt-[8px] pb-[8px] pl-[8px] ">
<div class="flex-1 flex gap-[8px]">
<div class="flex-1 h-full">
<slot />
</div>
<TaskList />

View File

@@ -1,17 +0,0 @@
<template>
<div class="bg-[#f7f9fc] h-full w-full px-[20px]">
<div class="flex h-full w-full flex-col md:flex-row">
<chat-history class="flex-none w-64" />
<div class="flex-1 overflow-auto px-5 bg-white rounded-xl">
<!-- <chat-guide /> -->
<chat-box />
</div>
</div>
</div>
</template>
<script setup lang="ts">
import ChatHistory from './ChatHistory.vue'
import ChatGuide from './ChatGuide.vue'
import ChatBox from './ChatBox.vue'
</script>

View File

@@ -5,11 +5,21 @@
</header-bar>
<layout>
<div class="flex h-full w-full flex-col md:flex-row">
<chat-history class="flex-none w-64" />
<div class="flex-1 overflow-auto px-5 bg-white rounded-xl">
<chat-guide />
<!-- <chat-box /> -->
</div>
</div>
</layout>
</div>
</template>
<script setup lang="ts">
import ChatHistory from './ChatHistory.vue'
import ChatGuide from './ChatGuide.vue'
import ChatBox from './ChatBox.vue'
</script>