| | |
| | | <script setup> |
| | | import {onMounted, reactive} from 'vue' |
| | | import * as echarts from 'echarts/core'; |
| | | import { GridComponent, ToolboxComponent, TooltipComponent, TitleComponent } from 'echarts/components'; |
| | | import { LineChart, BarChart } from 'echarts/charts'; |
| | | import { UniversalTransition } from 'echarts/features'; |
| | | import { CanvasRenderer } from 'echarts/renderers'; |
| | | |
| | | echarts.use([GridComponent, LineChart, BarChart, CanvasRenderer, UniversalTransition, ToolboxComponent, TooltipComponent, TitleComponent]); |
| | | |
| | | const state = reactive({ |
| | | zhakouVal: 1, |
| | |
| | | height: 96%; |
| | | background: rgba(23,108,229,0.3); |
| | | border: 1px solid #176CE5; |
| | | border-radius: 8px; |
| | | .item-t{ |
| | | height: 10%; |
| | | padding: 0 30px; |