| | |
| | | <template #middleBlock2>主看板</template> |
| | | <template #middleBlock3>任务详情</template> |
| | | <template #middleBlock4>人员信息</template> |
| | | <template #rightBlock1>时间</template> |
| | | <template #rightBlock1> |
| | | <div class="date-time"> |
| | | <CurrentDateTime></CurrentDateTime> |
| | | </div> |
| | | </template> |
| | | <template #rightBlock2>状态面板</template> |
| | | <template #rightBlock3>知识库</template> |
| | | </DashboardLayout> |
| | |
| | | import type { Task } from '@/api/task' |
| | | import { chain } from 'lodash-es' |
| | | import TaskTabs from '@/views/dashboard/components/TaskTabs.vue' |
| | | import CurrentDateTime from '@/views/dashboard/components/CurrentDateTime.vue' |
| | | |
| | | defineOptions({ |
| | | name: 'DashboardView' |
| | |
| | | }) |
| | | </script> |
| | | |
| | | <style scoped></style> |
| | | <style scoped> |
| | | .date-time { |
| | | width: 100%; |
| | | display: flex; |
| | | align-items: center; |
| | | justify-content: center; |
| | | padding-top: 12px; |
| | | } |
| | | </style> |