songshankun
2023-10-27 a334208af82b102e1d1bbc91b44753b04c0ed0de
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<template>
  <DashboardLayout>
    <template #leftBlock1>任务筛选tabs</template>
    <template #leftBlock2>
      <div style="height: 1500px">通道任务</div>
    </template>
    <template #middleBlock1>标题</template>
    <template #middleBlock2>主看板</template>
    <template #middleBlock3>任务详情</template>
    <template #middleBlock4>人员信息</template>
    <template #rightBlock1>时间</template>
    <template #rightBlock2>状态面板</template>
    <template #rightBlock3>知识库</template>
  </DashboardLayout>
</template>
<script setup lang="ts">
defineOptions({
  name: 'DashboardView'
})
</script>
 
<style scoped></style>