Blame view

src/views/dashboard/analysis/index.vue 2.2 KB
1
<template>
2
  <div class="p-4 analysis">
3
    <a-row class="pl-2">
4
      <template v-for="item in growCardList" :key="item.title">
5
        <a-col :sm="24" :md="12" :lg="6">
6
          <GrowCard :info="item" />
7
        </a-col>
8
      </template>
9
    </a-row>
10
11
12
    <a-row>
      <a-col :md="24" :lg="17" class="my-3">
13
14
15
        <CollapseContainer class="mr-3" title="产品成交额" :canExpan="false">
          <AnalysisLine />
        </CollapseContainer>
16
17
        <a-row class="mt-3">
          <a-col :md="24" :lg="12" class="product-total">
18
19
20
            <CollapseContainer class="mr-3" title="产品成交额" :canExpan="false">
              <AnalysisPie />
            </CollapseContainer>
21
22
          </a-col>
          <a-col :md="24" :lg="12">
23
24
25
            <CollapseContainer class="mr-3" title="用户来源" :canExpan="false">
              <AnalysisBar />
            </CollapseContainer>
26
27
28
29
          </a-col>
        </a-row>
      </a-col>
      <a-col :md="24" :lg="7">
30
31
32
33
34
        <CollapseContainer class="mt-3" title="项目进度" :canExpan="false">
          <template v-for="item in taskList" :key="item.title">
            <TaskCard :info="item" />
          </template>
        </CollapseContainer>
35
36
37
      </a-col>
    </a-row>
    <a-row>
38
      <FlowAnalysis />
39
    </a-row>
40
41
42
43
44
45
46
47
48
49
50
  </div>
</template>
<script lang="ts">
  import { defineComponent } from 'vue';
  import GrowCard from './components/GrowCard.vue';
  import AnalysisLine from './components/AnalysisLine.vue';
  import AnalysisPie from './components/AnalysisPie.vue';
  import AnalysisBar from './components/AnalysisBar.vue';
  import TaskCard from './components/TaskCard.vue';
  import FlowAnalysis from './components/FlowAnalysis';
  import { CollapseContainer } from '/@/components/Container/index';
vben authored
51
  import { Row, Col } from 'ant-design-vue';
52
53
54
55
56
57
58
59
60
61
  import { growCardList, taskList } from './data';
  export default defineComponent({
    components: {
      GrowCard,
      CollapseContainer,
      AnalysisLine,
      AnalysisPie,
      AnalysisBar,
      TaskCard,
      FlowAnalysis,
vben authored
62
63
      [Row.name]: Row,
      [Col.name]: Col,
64
65
66
67
68
69
70
71
72
73
74
    },
    setup() {
      return { growCardList, taskList };
    },
  });
</script>
<style lang="less" scoped>
  .analysis {
    width: 100%;
  }
</style>