This commit is contained in:
duanxiaohai 2024-05-29 10:44:17 +08:00
parent 2ff3bdaf78
commit a3b805a61b
6 changed files with 708 additions and 275 deletions

BIN
dist.zip Normal file

Binary file not shown.

View File

@ -7,6 +7,7 @@ import {
onBeforeMount,
onMounted,
ref,
watch,
reactive,
defineProps,
nextTick,
@ -286,7 +287,16 @@ const setChart1 = () => {
data.list2.push(item.jzje); //
});
};
watch(
() => props.list,
(newVal, oldVal) => {
data.list = newVal;
// console.log("1", data.list);
setChart1();
getOption();
setChart();
}
);
// 使
onBeforeMount(() => {
setTimeout(() => {

View File

@ -268,6 +268,7 @@ const getOption = () => {
color: "rgba(221, 242, 255, 0.1)",
},
data: data.list.year.map(() => 100),
// data: 100,
barWidth: 50,
},
],

View File

@ -3,43 +3,59 @@
</template>
<script setup>
import { onMounted, reactive, ref } from "vue";
import {
onBeforeMount,
onMounted,
ref,
reactive,
defineProps,
watch,
nextTick,
} from "vue";
// echarts
import * as echarts from "echarts";
const props = defineProps({
list: {
type: Array,
default: () => {
return [];
},
},
// list2: {
// type: Array,
// default: () => {
// return [];
// },
// },
year: {
type: Array,
default: () => {
return [];
},
},
});
const chart = ref(); // DOM
const data = [120, 200, 50, 80, 70];
const data2 = [12, 20, 5, 8, 7];
const lineData = [150, 230, 24, 218, 135];
const lineData2 = [15, 23, 4, 18, 15];
const max = data
.concat(lineData)
.reduce((pre, cur) => (pre > cur ? pre : cur), 0); //
//
const color = [
{
type: "linear",
x: 0,
x2: 0,
y: 0,
y2: 1,
},
];
const option = {
const data = reactive({
list: [],
list1: [],
list2: [],
year: [],
option: {},
initialLegendData: ["生活补贴人数", "生活补贴金额"],
});
const getOption = () => {
data.option = {
tooltip: {
trigger: "axis",
formatter: "{b0}<br/> {a0}:{c0}<br/>{a1}:{c1}<br/>{a2}:{c2}<br/>{a3}:{c3}",
formatter: "{b0}<br/> {a0}:{c0}<br/>{a1}:{c1}",
},
legend: {
data: [
"困难残疾人生活补贴人数",
"护理补贴人数",
"",
"困难残疾人生活补贴金额",
"护理补贴金额",
],
show: true,
data: data.initialLegendData,
top: "3%",
textStyle: {
fontSize: 14,
@ -47,7 +63,6 @@ const option = {
},
},
grid: {
top: "25%",
left: "6%",
right: "9%",
bottom: "5%",
@ -56,7 +71,7 @@ const option = {
fontSize: 14,
},
calculable: true,
color,
xAxis: [
{
type: "category",
@ -71,12 +86,13 @@ const option = {
axisTick: {
show: false, //
},
data: ["2019", "2020", "2021", "2022", "2023"],
// data: ["2019", "2020", "2021", "2022", "2023"],
data: data.list.year,
},
{
type: "category",
show: false,
data: ["2019", "2020", "2021", "2022", "2023"],
data: data.list.year,
},
],
yAxis: [
@ -84,7 +100,7 @@ const option = {
type: "value",
scale: true,
name: "补贴人数",
min: 0,
splitLine: {
//线
show: false,
@ -97,8 +113,8 @@ const option = {
axisLabel: {
//y
textStyle: {
color: "#ffffff",
fontSize: 14,
color: "#ffffff",
},
},
axisLine: {
@ -117,7 +133,7 @@ const option = {
scale: true,
min: 0,
name: "救助金额/元",
name: "补贴金额/万",
splitLine: {
show: false,
lineStyle: {
@ -163,39 +179,49 @@ const option = {
axisLabel: {
show: false,
fontSize: 14,
fontFamily: "MicrosoftYaHei",
color: "#ffffff",
lineHeight: 19,
fontFamily: "MicrosoftYaHei",
},
},
],
series: [
{
yAxisIndex: 0,
name: "困难残疾人生活补贴人数",
data: data,
barWidth: 10,
type: "bar",
yAxisIndex: 1,
name: "生活补贴金额",
data: data.list2,
type: "line", //线
stack: "Total",
symbol: "emptyCircle",
symbolSize: 10,
label: {
show: true,
position: "top",
color: "#ffffff",
formatter: function (data) {
return data.value;
},
},
itemStyle: {
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
{
offset: 0,
color: "rgba(142, 187, 255, 1)",
},
{
offset: 1,
color: "rgba(142, 187, 255, 0.20)",
},
]),
borderColor: "#00FCFF",
borderWidth: 1,
color: "#2468FF",
},
},
{
yAxisIndex: 0,
name: "护理补贴人数",
data: data2,
barWidth: 10,
name: "生活补贴人数",
data: data.list1,
barWidth: 20,
type: "bar",
label: {
show: true,
// position: "insideTop",
color: "#ffffff",
formatter: function (data) {
return data.value;
},
},
itemStyle: {
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
{
@ -210,35 +236,9 @@ const option = {
},
},
{
yAxisIndex: 1,
name: "困难残疾人生活补贴金额",
data: lineData,
type: "line", //线
itemStyle: {
borderColor: "#00FCFF",
borderWidth: 1,
color: "#00FCFF",
},
},
{
yAxisIndex: 1,
name: "护理补贴金额",
data: lineData2,
type: "line", //线
itemStyle: {
borderColor: "#00FCFF",
borderWidth: 1,
color: "#2468FF",
},
},
{
yAxisIndex: 2,
type: "bar",
xAxisIndex: 1,
itemStyle: {
color: "rgba(180, 180, 180, 0.2)", //
},
data: data.map(() => 100),
barWidth: 60, //
yAxisIndex: 2,
emphasis: {
itemStyle: {
color: {
@ -260,26 +260,50 @@ const option = {
},
},
},
type: "bar",
itemStyle: {
color: "rgba(221, 242, 255, 0.1)",
},
data: data.list.year.map(() => 100),
barWidth: 50,
},
],
};
};
const setChart = () => {
var myChart = echarts.init(chart.value);
myChart.setOption(data.option);
};
const setChart1 = () => {
data.list1 = [];
data.list2 = [];
data.list.data.forEach((item) => {
data.list1.push(item.jzrs); //
data.list2.push(item.jzje); //
});
// console.log("2", data.list1, data.list2);
};
watch(
() => props.list,
(newVal, oldVal) => {
data.list = newVal;
// console.log("1", data.list);
setChart1();
getOption();
setChart();
}
);
// 使
onMounted(() => {
// domecharts
// var myChart = echarts.init(document.getElementById('main'));
// Vue3
var myChart = echarts.init(chart.value);
// init(); // vue3.2this
// 使
myChart.setOption(option);
// :
// window.addEventListener("resize", () => {
// myChart.resize();
// });
onBeforeMount(() => {
setTimeout(() => {
data.list = props.list;
setChart1();
console.log(data.list, data.list1, data.list2, "教育");
getOption();
setChart();
}, 600);
});
</script>

View File

@ -0,0 +1,358 @@
<template>
<div ref="chart" style="width: 100%; height: 360px"></div>
</template>
<script setup>
import {
onBeforeMount,
onMounted,
ref,
reactive,
defineProps,
watch,
nextTick,
} from "vue";
// echarts
import * as echarts from "echarts";
const props = defineProps({
list: {
type: Array,
default: () => {
return [];
},
},
year: {
type: Array,
default: () => {
return [];
},
},
});
const chart = ref(); // DOM
const data = reactive({
list: [],
list1: [],
list2: [],
year: [],
option: {},
initialLegendData: ["困难军人生活补贴人数", "困难军人生活补贴金额"],
});
// const data1 = [120, 200, 50, 80, 70];
// const data2 = [12, 20, 5, 8, 7];
// const lineData = [150, 230, 24, 218, 135];
// const lineData2 = [15, 23, 4, 18, 15];
// const max = data
// .concat(lineData)
// .reduce((pre, cur) => (pre > cur ? pre : cur), 0); //
// //
// const color = [
// {
// type: "linear",
// x: 0,
// x2: 0,
// y: 0,
// y2: 1,
// },
// ];
// const getOption = () => {
// data.option = {
// tooltip: {
// trigger: "axis",
// formatter: "{b0}<br/> {a0}:{c0}<br/>{a1}:{c1}<br/>{a2}:{c2}<br/>{a3}:{c3}",
// },
// legend: {
// data: [
// "",
// "",
// "",
// "",
// "",
// ],
// top: "3%",
// textStyle: {
// fontSize: 14,
// color: "#ffffff", //
// },
// },
// grid: {
// top: "25%",
// left: "6%",
// right: "9%",
// bottom: "5%",
// containLabel: true,
// color: "#ffffff",
// fontSize: 14,
// },
// calculable: true,
// color,
// xAxis: [
// {
// type: "category",
// axisLabel: {
// //
// textStyle: {
// color: "#ffffff",
// fontSize: 14,
// },
// },
// axisTick: {
// show: false, //
// },
// data: ["2019", "2020", "2021", "2022", "2023"],
// },
// {
// type: "category",
// show: false,
// data: ["2019", "2020", "2021", "2022", "2023"],
// },
// ],
// yAxis: [
// {
// type: "value",
// scale: true,
// name: "",
// splitLine: {
// //线
// show: false,
// lineStyle: {
// color: "#ffffff",
// fontSize: 14,
// width: 1,
// },
// },
// axisLabel: {
// //y
// textStyle: {
// color: "#ffffff",
// fontSize: 14,
// },
// },
// axisLine: {
// //y线
// show: false,
// lineStyle: {
// color: "#ffffff",
// fontSize: 14,
// width: 1,
// type: "solid",
// },
// },
// },
// {
// type: "value",
// scale: true,
// min: 0,
// name: "/",
// splitLine: {
// show: false,
// lineStyle: {
// color: "rgba(226, 226, 226, 0.3)",
// width: 1,
// },
// },
// axisLabel: {
// //y
// textStyle: {
// color: "#ffffff",
// fontSize: 14,
// },
// },
// axisLine: {
// //y线
// show: false,
// lineStyle: {
// color: "#ffffff",
// fontSize: 14,
// width: 1,
// type: "solid",
// },
// },
// },
// {
// type: "value",
// min: 0,
// max: 100,
// splitLine: {
// show: false,
// lineStyle: {
// type: "solid",
// color: "rgb(221, 242, 255,0.1)",
// },
// },
// axisLine: {
// show: false,
// lineStyle: {
// type: "dotted",
// },
// },
// axisLabel: {
// show: false,
// fontSize: 14,
// color: "#ffffff",
// lineHeight: 19,
// fontFamily: "MicrosoftYaHei",
// },
// },
// ],
// series: [
// {
// yAxisIndex: 0,
// name: "",
// data: data1,
// barWidth: 10,
// type: "bar",
// itemStyle: {
// color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
// {
// offset: 0,
// color: "rgba(142, 187, 255, 1)",
// },
// {
// offset: 1,
// color: "rgba(142, 187, 255, 0.20)",
// },
// ]),
// },
// },
// {
// yAxisIndex: 0,
// name: "",
// data: data2,
// barWidth: 10,
// type: "bar",
// itemStyle: {
// color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
// {
// offset: 0,
// color: "rgba(23, 237, 255, 1)",
// },
// {
// offset: 1,
// color: "rgba(23, 237, 255, 0.20)",
// },
// ]),
// },
// },
// {
// yAxisIndex: 1,
// name: "",
// data: lineData,
// type: "line", //线
// itemStyle: {
// borderColor: "#00FCFF",
// borderWidth: 1,
// color: "#00FCFF",
// },
// },
// {
// yAxisIndex: 1,
// name: "",
// data: lineData2,
// type: "line", //线
// itemStyle: {
// borderColor: "#00FCFF",
// borderWidth: 1,
// color: "#2468FF",
// },
// },
// {
// yAxisIndex: 2,
// xAxisIndex: 1,
// itemStyle: {
// color: "rgba(180, 180, 180, 0.2)", //
// },
// data: data.map(() => 100),
// barWidth: 60, //
// emphasis: {
// itemStyle: {
// color: {
// type: "linear",
// x: 0,
// x2: 0,
// y: 0,
// y2: 1,
// colorStops: [
// {
// offset: 0,
// color: "rgba(64, 247, 176, 0.25)",
// },
// {
// offset: 1,
// color: "rgba(17, 34, 64, 0.25)",
// },
// ],
// },
// },
// },
// type: "bar",
// },
// ],
// };
// }
// 使
// onMounted(() => {
// // domecharts
// // var myChart = echarts.init(document.getElementById('main'));
// // Vue3
// var myChart = echarts.init(chart.value);
// // init(); // vue3.2this
// // 使
// myChart.setOption(option);
// // :
// // window.addEventListener("resize", () => {
// // myChart.resize();
// // });
// });
// const setChart = () => {
// var myChart = echarts.init(chart.value);
// myChart.setOption(data.option);
// };
// const setChart1 = () => {
// data.list1 = [];
// data.list2 = [];
// data.list.data.forEach((item) => {
// data.list1.push(item.jzrs); //
// data.list2.push(item.jzje); //
// });
// // console.log("2", data.list1, data.list2);
// };
// watch(
// () => props.list,
// (newVal, oldVal) => {
// data.list = newVal;
// // console.log("1", data.list);
// setChart1();
// getOption();
// setChart();
// }
// );
// 使
onBeforeMount(() => {
setTimeout(() => {
data.list = props.list;
// setChart1();
console.log(data.list, "残疾人补助信息");
// getOption();
// setChart();
}, 600);
});
</script>
<style scoped></style>

View File

@ -23,7 +23,7 @@
就业
</div> -->
</div>
<eP1 :list="data.education"></eP1>
<eP1 :list="data.list2"></eP1>
<div class="choose">
<div
:class="jz[1].choose == '1' ? 'choose_1' : 'choose_2'"
@ -111,8 +111,9 @@
困难职工
</div>
</div>
<eP5 v-if="jz[2].choose == '2'" :list="data.difficultSoldiers"></eP5>
<eP4 v-else :list="data.difficultSoldiers"></eP4>
<eP4 :list="data.list1"></eP4>
<!-- <eP6 v-if="jz[2].choose == '1'" :list="data.difficultSoldiers"></eP6>
<eP5 v-if="jz[2].choose == '2'" :list="data.difficultSoldiers"></eP5> -->
</div>
<div class="flex1">
<div class="yd_title right_2"></div>
@ -157,6 +158,7 @@ import eP2 from "./echarts_work/eP2.vue";
import eP3 from "./echarts_work/eP3.vue";
import eP4 from "./echarts_work/eP4.vue";
import eP5 from "./echarts_work/eP5.vue";
import eP6 from "./echarts_work/eP6.vue";
import ePjz from "./echarts_work/ePjz.vue";
import http from "@/utils/request.js";
// &
@ -178,24 +180,25 @@ const jz = ref([
]);
const jzChange = (index, value) => {
jz.value[index].choose = value;
switch (index) {
case 0:
// console.log(111, jz.value[index].choose);
break;
case 1:
value == "1" ? (data.list = data.housing) : (data.list = data.temporary);
// console.log(data.list, jz.value[index].choose);
break;
case 2:
// console.log(333, jz.value[index].choose);
break;
default:
break;
if (index === 0) {
data.list2 = value === "1" ? data.education : data.education1;
console.log(111, jz.value[index].choose);
} else if (index === 1) {
data.list = value === "1" ? data.housing : data.temporary;
} else if (index === 2) {
const listMap = {
1: data.needyWorkers1,
2: data.difficultSoldiers,
3: data.needyWorkers,
};
data.list1 = listMap[value];
}
};
const data = reactive({
list: {},
list1: {},
list2: {},
education: {
data: [
{
@ -206,6 +209,16 @@ const data = reactive({
],
year: ["2019"],
}, //
education1: {
data: [
{
nf: "2019", //
jzrs: "4202", //
jzje: "1523", //
},
],
year: ["2019"],
}, //
housing: {
data: [
{
@ -245,6 +258,26 @@ const data = reactive({
],
year: ["2019"],
}, //
needyWorkers1: {
data: [
{
nf: "2019", //
jzrs: "0", //
jzje: "0", //
},
],
year: ["2019"],
}, //
needyWorkers: {
data: [
{
nf: "2019", //
jzrs: "0", //
jzje: "0", //
},
],
year: ["2019"],
}, //
diversification: {
hszhxms: [
{
@ -274,6 +307,7 @@ const getData = async () => {
// &
data.education.data = res.data.specialAssistance.education.data;
data.education.year = res.data.specialAssistance.education.year;
data.list2 = data.education;
// &
data.housing.data = res.data.specialAssistance.housing.data;
data.housing.year = res.data.specialAssistance.housing.year;
@ -288,17 +322,23 @@ const getData = async () => {
data.lifeAssistance.yktTotal = addThousandSeparator(
String((res.data.lifeAssistance.yktTotal / 10000).toFixed(2))
);
data.lifeAssistance.subsidyInformation = res.data.lifeAssistance.subsidyInformation;
data.lifeAssistance.subsidyInformation =
res.data.lifeAssistance.subsidyInformation;
res.data.lifeAssistance.subsidyInformation.forEach((item, index) => {
data.lifeAssistance.subsidyInformation[index].btje =
addThousandSeparator((item.btje / 10000).toFixed(2));
});
//
// &&
//
data.difficultSoldiers.data =
res.data.underprivileged.difficultSoldiers.data;
data.difficultSoldiers.year =
res.data.underprivileged.difficultSoldiers.year;
//
data.needyWorkers.data = res.data.underprivileged.needyWorkers.data;
data.needyWorkers.year = res.data.underprivileged.needyWorkers.year;
data.list1 = data.needyWorkers1;
//
data.diversification.hszhxms = res.data.diversification.hszhxms;