ggfwjsc/src/view/echarts_hygiene/pie2.vue

146 lines
2.9 KiB
Vue
Raw Normal View History

2024-04-17 14:20:33 +08:00
<template>
2024-05-13 10:53:21 +08:00
<div ref="chart" style="width: 100%; height: 250px"></div>
2024-04-17 14:20:33 +08:00
</template>
<script setup >
2024-05-13 10:53:21 +08:00
import { onMounted, reactive, ref, onBeforeMount, defineProps } from "vue";
2024-04-17 14:20:33 +08:00
// 局部引入echarts核心模块
import * as echarts from "echarts";
2024-05-13 10:53:21 +08:00
const props = defineProps({
list: {
type: Array,
default: () => [],
2024-04-17 14:20:33 +08:00
},
2024-05-13 10:53:21 +08:00
year: {
type: Array,
default: () => [],
2024-04-17 14:20:33 +08:00
},
2024-05-13 10:53:21 +08:00
});
const data = reactive({
list: [],
zgffje: [], //职工医疗保险发放人次
cxffje: [], //城乡医疗保险发放人次
year: [],
option: {},
bg: [],
});
const chart = ref(); // 创建DOM引用
2024-04-17 14:20:33 +08:00
2024-05-13 10:53:21 +08:00
const getOption = () => {
data.option = {
tooltip: {
trigger: "axis",
padding: [20, 10, 20, 10],
formatter: "{b0}<br />{a1}:{c1} <br />{a2}:{c2} ",
},
legend: {
data: ["职工医疗保险金额", "城乡医疗保险金额"],
top: "6%",
right: "11%",
2024-04-17 14:20:33 +08:00
textStyle: {
2024-05-22 15:04:24 +08:00
fontSize: 16,
2024-04-25 16:28:11 +08:00
color: "#ffffff",
2024-04-17 14:20:33 +08:00
},
},
2024-05-13 10:53:21 +08:00
grid: {
top: "23%",
left: "1%",
right: "10%",
bottom: "3%",
containLabel: true,
2024-04-17 14:20:33 +08:00
},
2024-05-13 10:53:21 +08:00
xAxis: {
type: "category",
// boundaryGap: false,
data: data.year,
axisLabel: {
//坐标轴刻度标签的相关设置
textStyle: {
2024-05-22 15:04:24 +08:00
fontSize: 16,
2024-05-13 10:53:21 +08:00
color: "#ffffff",
},
2024-04-17 14:20:33 +08:00
},
},
2024-05-13 10:53:21 +08:00
yAxis: {
type: "value",
splitLine: {
show: true,
lineStyle: {
color: "rgba(226, 226, 226, 0.3)",
width: 1,
},
2024-04-17 14:20:33 +08:00
},
2024-05-13 10:53:21 +08:00
axisLabel: {
//坐标轴刻度标签的相关设置
textStyle: {
2024-05-22 15:04:24 +08:00
fontSize: 16,
2024-05-13 10:53:21 +08:00
color: "#ffffff",
},
2024-04-17 14:20:33 +08:00
},
},
2024-05-13 10:53:21 +08:00
series: [
{
name: "背景",
type: "bar",
data: data.bg,
showBackground: true,
backgroundStyle: {
color: "rgba(180, 180, 180, 0.2)",
},
},
{
name: "职工医疗保险金额",
type: "line",
symbol: "emptyCircle",
2024-04-17 14:20:33 +08:00
2024-05-13 10:53:21 +08:00
symbolSize: 10,
itemStyle: {
borderColor: "#00FCFF",
borderWidth: 1,
color: "#00FCFF",
},
data: data.zgffje,
2024-04-17 14:20:33 +08:00
},
2024-05-13 10:53:21 +08:00
{
name: "城乡医疗保险金额",
type: "line",
symbol: "emptyCircle",
2024-04-17 14:20:33 +08:00
2024-05-13 10:53:21 +08:00
symbolSize: 10,
itemStyle: {
borderColor: "#2468FF",
borderWidth: 1,
color: "#2468FF",
},
2024-04-17 14:20:33 +08:00
2024-05-13 10:53:21 +08:00
data: data.cxffje,
},
],
};
};
const setChart = () => {
2024-04-17 14:20:33 +08:00
// Vue3中 需要引入
var myChart = echarts.init(chart.value);
// 使用刚指定的配置项和数据显示图表。
2024-05-13 10:53:21 +08:00
myChart.setOption(data.option);
};
2024-04-17 14:20:33 +08:00
2024-05-13 10:53:21 +08:00
onBeforeMount(() => {
setTimeout(() => {
data.list = props.list;
data.year = props.year;
data.list.forEach((item) => {
data.zgffje.push(item.zgffje);
data.cxffje.push(item.cxffje);
data.bg.push("");
});
getOption();
setChart();
}, 600);
2024-04-17 14:20:33 +08:00
});
</script>
<style scoped>
</style>