ZhangXianQiang
2024-02-28 7c0e34f7919fe3bc70a4df726cd5304006f3b1c0
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!-- 交通安全形势研判分析 -->
<template>
  <RightTitle title="交通安全形势研判分析">
    <template #top>
      <div class="select-container flex">
        <div class="item whitespace-no-wrap cursor-pointer" v-for="item in selectItems" :key="item.itemIndex">
          {{ item.name }}
        </div>
      </div>
    </template>
    <template #content>
      <div class="charts-container">
        <div id="analysisChart" ref="analysisChart"></div>
 
      </div>
    </template>
  </RightTitle>
</template>
 
<script setup>
import RightTitle from "@/components/right-title";
import * as echarts from 'echarts';
import { ref, onMounted } from 'vue';
const analysisChart = ref(null);
const selectItems = ref([
  { itemIndex: 1, name: '时间统计', isActive: false },
  { itemIndex: 2, name: '街道统计', isActive: true },
]);
 
const testData = ref([
  { name: '奎光塔街道', state1: 972, state2: 2124, state3: 1500 },
  { name: '蒲阳街道', state1: 972, state2: 2124, state3: 1500 },
  { name: '聚源镇', state1: 972, state2: 2124, state3: 1500 },
  { name: '银杏街道', state1: 972, state2: 2124, state3: 1500 },
  { name: '石羊镇', state1: 972, state2: 2124, state3: 1500 },
  { name: '龙池镇', state1: 972, state2: 2124, state3: 1500 },
  { name: '天马镇', state1: 972, state2: 2124, state3: 1500 },
  { name: '玉堂街道', state1: 972, state2: 2124, state3: 1500 },
  { name: '灌口街道', state1: 972, state2: 2124, state3: 1500 },
]);
 
 
const echartsConfig = {
  legend: {
    right: '0',
    textStyle: {
      color: 'rgba(77, 118, 176, 1)'
    },
  },
  tooltip: {},
  grid: {
    left: 0,
    right: 0,
    bottom: 0,
    top: '15%',
    containLabel: true
  },
  dataset: {
    dimensions: ['name', 'state1', 'state2', 'state3'],
    source: testData.value
  },
  xAxis: { type: 'category' },
  yAxis: {},
  // Declare several bar series, each will be mapped
  // to a column of dataset.source by default.
  series: [
    {
      type: 'bar',
      name: '醉驾',
      itemStyle: {
        // 设置渐变色
        color: new echarts.graphic.LinearGradient(
          0, 1, 0, 0,
          [
            { offset: 0, color: 'rgba(14, 32, 54, 1)' },    // 0% 处的颜色
            { offset: 1, color: 'rgba(0, 168, 217, 1)' }     // 100% 处的颜色
          ]
        )
      },
    },
    {
      type: 'bar',
      name: '酒驾',
      itemStyle: {
        // 设置渐变色
        color: new echarts.graphic.LinearGradient(
          0, 1, 0, 0,
          [
            { offset: 0, color: 'rgba(14, 31, 53, 1)' },    // 0% 处的颜色
            { offset: 1, color: 'rgba(207, 178, 73, 1)' }     // 100% 处的颜色
          ]
        )
      },
    },
    {
      type: 'bar',
      name: '其他',
      itemStyle: {
        // 设置渐变色
        color: new echarts.graphic.LinearGradient(
          0, 1, 0, 0,
          [
            { offset: 0, color: 'rgba(14, 31, 53, 1)' },    // 0% 处的颜色
            { offset: 1, color: 'rgba(43, 176, 109, 1)' }     // 100% 处的颜色
          ]
        )
      },
    },
  ]
}
 
 
 
onMounted(() => {
  const myChart = echarts.init(analysisChart.value);
  myChart.setOption(echartsConfig);
})
</script>
 
<style lang="scss" scoped>
.select-container {
  flex-shrink: 0;
}
 
.item {
  margin: 0 8px;
  padding: 10px 14px;
  font-size: 12px;
  background: rgba(67, 102, 155, 0.4);
  border: 1px solid rgba(47, 91, 157, 0.8);
  flex-shrink: 0;
}
 
.item:last-child {
  margin-right: 0;
}
 
.charts-container {
  width: 100%;
  height: 306px;
  padding: 20px;
  background-color: rgba(17, 34, 58, 0.6);
  border: 1px solid rgba(47, 91, 157, 0.8);
}
 
#analysisChart {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
</style>