zhou zhou
7 小时以前 46d872c1a5b77aa8799de4a64888a0a24a1422d6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!-- 工作台页面 -->
<template>
  <div>
    <CardList></CardList>
 
    <ElRow :gutter="20">
      <ElCol :sm="24" :md="12" :lg="10">
        <ActiveUser />
      </ElCol>
      <ElCol :sm="24" :md="12" :lg="14">
        <SalesOverview />
      </ElCol>
    </ElRow>
 
    <ElRow :gutter="20">
      <ElCol :sm="24" :md="24" :lg="12">
        <NewUser />
      </ElCol>
      <ElCol :sm="24" :md="12" :lg="6">
        <Dynamic />
      </ElCol>
      <ElCol :sm="24" :md="12" :lg="6">
        <TodoList />
      </ElCol>
    </ElRow>
 
    <AboutProject />
  </div>
</template>
 
<script setup>
  import CardList from './modules/card-list.vue'
  import ActiveUser from './modules/active-user.vue'
 
  import SalesOverview from './modules/sales-overview.vue'
  import NewUser from './modules/new-user.vue'
 
  import Dynamic from './modules/dynamic-stats.vue'
  import TodoList from './modules/todo-list.vue'
 
  import AboutProject from './modules/about-project.vue'
 
  defineOptions({ name: 'Console' })
</script>