feat: 新增任务中心页面|右侧菜单调整

This commit is contained in:
duanshuwen
2025-12-22 22:56:00 +08:00
parent 3396c35bbb
commit 5caa9a5a4b
12 changed files with 107 additions and 86 deletions

View File

@@ -0,0 +1,18 @@
<template>
<main class="bg-white 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">
</div>
<TaskList />
</div>
<SideMenus />
</main>
</template>
<script setup lang="ts" name="Layout">
import TaskList from '@renderer/components/TaskList/index.vue'
import SideMenus from '@renderer/components/SideMenus/index.vue'
</script>