Blame view

juvenile-prosecution-vue/src/components/chart/StackBar.vue 1.27 KB
6c637641   wxy   no message
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
45
46
47
48
49
50
51
52
53
54
  <template>
    <div>
      <v-chart :forceFit="true" :height="height" :data="data">
        <v-coord type="rect" direction="LB" />
        <v-tooltip />
        <v-legend />
        <v-axis dataKey="State" :label="label" />
        <v-stack-bar position="State*流程数量"  color="流程状态" />
      </v-chart>
    </div>
  
  </template>
  
  <script>
    const DataSet = require('@antv/data-set');
  
    export default {
      name: 'StackBar',
      props: {
        dataSource: {
          type: Array,
          required: true,
          default: () => [
            { 'State': '请假', '流转中': 25, '已归档': 18 },
            { 'State': '出差', '流转中': 30, '已归档': 20 },
            { 'State': '加班', '流转中': 38, '已归档': 42},
            { 'State': '用车', '流转中': 51, '已归档': 67}
          ]
        },
        height: {
          type: Number,
          default: 254
        }
      },
      data() {
        return {
          label: { offset: 12 }
        }
      },
      computed: {
        data() {
          const dv = new DataSet.View().source(this.dataSource);
          dv.transform({
            type: 'fold',
            fields: ['流转中', '已归档'],
            key: '流程状态',
            value: '流程数量',
            retains: ['State'],
          });
         return dv.rows;
        }
      }
    }
  </script>