feat: 结构调整

This commit is contained in:
2026-01-19 18:40:27 +08:00
parent ddb92cd6d7
commit 8cc174a081
6 changed files with 92 additions and 98 deletions

View File

@@ -1,25 +1,19 @@
<template>
<div class="bg h-screen flex flex-col">
<header-bar>
<drag-region class="w-full" />
</header-bar>
<layout>
<div class="flex h-full w-full flex-col md:flex-row">
<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">
<div class="flex-1 mr-2 overflow-hidden bg-white rounded-xl">
<chat-guide />
<!-- <chat-box /> -->
</div>
<TaskList />
</div>
</layout>
</div>
</layout>
</template>
<script setup lang="ts">
import TaskList from '@renderer/components/TaskList/index.vue'
import ChatHistory from './ChatHistory.vue'
import ChatGuide from './ChatGuide.vue'
import ChatBox from './ChatBox.vue'
</script>