This commit is contained in:
parent
57a31691e3
commit
abb01a1598
Binary file not shown.
After Width: | Height: | Size: 64 KiB |
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div ref="chart" style="width: 100%; height: 220px"></div>
|
<div ref="chart" style="width: 100%; height: 200px"></div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup >
|
<script setup >
|
||||||
|
@ -24,7 +24,7 @@ let option = {
|
||||||
},
|
},
|
||||||
grid: {
|
grid: {
|
||||||
left: "1%",
|
left: "1%",
|
||||||
right: "4%",
|
right: "10%",
|
||||||
bottom: "3%",
|
bottom: "3%",
|
||||||
containLabel: true,
|
containLabel: true,
|
||||||
},
|
},
|
||||||
|
|
|
@ -0,0 +1,134 @@
|
||||||
|
<template>
|
||||||
|
<div ref="chart" style="width: 100%; height: 200px"></div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup >
|
||||||
|
import { onMounted, reactive, ref } from "vue";
|
||||||
|
// 局部引入echarts核心模块
|
||||||
|
import * as echarts from "echarts";
|
||||||
|
|
||||||
|
const chart = ref(); // 创建DOM引用
|
||||||
|
|
||||||
|
let option = {
|
||||||
|
tooltip: {
|
||||||
|
trigger: "axis",
|
||||||
|
},
|
||||||
|
legend: {
|
||||||
|
// data: ["80-90补贴人次", "90-98补贴人次", "99以上补贴人次"],
|
||||||
|
top: "8%",
|
||||||
|
right: "15%",
|
||||||
|
textStyle: {
|
||||||
|
fontSize: 12,
|
||||||
|
color: "#ccc",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
grid: {
|
||||||
|
left: "1%",
|
||||||
|
right: "4%",
|
||||||
|
bottom: "3%",
|
||||||
|
containLabel: true,
|
||||||
|
},
|
||||||
|
|
||||||
|
xAxis: {
|
||||||
|
type: "category",
|
||||||
|
// boundaryGap: false,
|
||||||
|
data: ["1月", "2月", "3月", "4月", "5月"],
|
||||||
|
splitArea: {
|
||||||
|
show: true,
|
||||||
|
interval: '10',
|
||||||
|
areaStyle: {
|
||||||
|
color: ["rgba(255, 255, 255, 0.10)"],
|
||||||
|
width:10,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
axisLabel: {
|
||||||
|
//坐标轴刻度标签的相关设置
|
||||||
|
textStyle: {
|
||||||
|
color: "#ccc",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
yAxis: {
|
||||||
|
type: "value",
|
||||||
|
splitLine: {
|
||||||
|
show: true,
|
||||||
|
lineStyle: {
|
||||||
|
color: "rgba(226, 226, 226, 0.3)",
|
||||||
|
width: 1,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
axisLabel: {
|
||||||
|
//坐标轴刻度标签的相关设置
|
||||||
|
textStyle: {
|
||||||
|
color: "#ccc",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
series: [
|
||||||
|
{
|
||||||
|
name: "80-90补贴人次",
|
||||||
|
type: "line",
|
||||||
|
stack: "Total",
|
||||||
|
symbol: "emptyCircle",
|
||||||
|
|
||||||
|
symbolSize: 10,
|
||||||
|
itemStyle: {
|
||||||
|
borderColor: "#00FCFF",
|
||||||
|
borderWidth: 1,
|
||||||
|
color: "#00FCFF",
|
||||||
|
},
|
||||||
|
data: [120, 132, 101, 134, 90],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "90-98补贴人次",
|
||||||
|
type: "line",
|
||||||
|
stack: "Total",
|
||||||
|
symbol: "emptyCircle",
|
||||||
|
|
||||||
|
symbolSize: 10,
|
||||||
|
itemStyle: {
|
||||||
|
borderColor: "#E8FF00",
|
||||||
|
borderWidth: 1,
|
||||||
|
color: "#E8FF00",
|
||||||
|
},
|
||||||
|
|
||||||
|
data: [220, 182, 191, 234, 290],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "99以上补贴人次",
|
||||||
|
type: "line",
|
||||||
|
stack: "Total",
|
||||||
|
symbol: "emptyCircle",
|
||||||
|
|
||||||
|
symbolSize: 10,
|
||||||
|
itemStyle: {
|
||||||
|
borderColor: "#2468FF",
|
||||||
|
borderWidth: 1,
|
||||||
|
color: "#2468FF",
|
||||||
|
},
|
||||||
|
|
||||||
|
data: [150, 232, 201, 154, 190],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
// 使用生命钩子
|
||||||
|
onMounted(() => {
|
||||||
|
// 基于准备好的dom,初始化echarts实例
|
||||||
|
// var myChart = echarts.init(document.getElementById('main'));
|
||||||
|
// Vue3中: 需要引入
|
||||||
|
var myChart = echarts.init(chart.value);
|
||||||
|
|
||||||
|
// init(); // vue3.2没有this
|
||||||
|
// 使用刚指定的配置项和数据显示图表。
|
||||||
|
myChart.setOption(option);
|
||||||
|
|
||||||
|
// 单图表响应式: 跟随浏览器大小改变
|
||||||
|
// window.addEventListener("resize", () => {
|
||||||
|
// myChart.resize();
|
||||||
|
// });
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
</style>
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div ref="chart" style="width: 100%; height: 220px"></div>
|
<div ref="chart" style="width: 100%; height: 200px"></div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup >
|
<script setup >
|
||||||
|
@ -58,7 +58,7 @@ let option = {
|
||||||
},
|
},
|
||||||
series: [
|
series: [
|
||||||
{
|
{
|
||||||
name: "80-90补贴人次",
|
name: "特困补助金额",
|
||||||
type: "line",
|
type: "line",
|
||||||
stack: "Total",
|
stack: "Total",
|
||||||
symbol: "emptyCircle",
|
symbol: "emptyCircle",
|
||||||
|
@ -71,23 +71,9 @@ let option = {
|
||||||
},
|
},
|
||||||
data: [120, 132, 101, 134, 90],
|
data: [120, 132, 101, 134, 90],
|
||||||
},
|
},
|
||||||
{
|
|
||||||
name: "90-98补贴人次",
|
|
||||||
type: "line",
|
|
||||||
stack: "Total",
|
|
||||||
symbol: "emptyCircle",
|
|
||||||
|
|
||||||
symbolSize: 10,
|
|
||||||
itemStyle: {
|
|
||||||
borderColor: "#E8FF00",
|
|
||||||
borderWidth: 1,
|
|
||||||
color: "#E8FF00",
|
|
||||||
},
|
|
||||||
|
|
||||||
data: [220, 182, 191, 234, 290],
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "99以上补贴人次",
|
name: "低保补助金额",
|
||||||
type: "line",
|
type: "line",
|
||||||
stack: "Total",
|
stack: "Total",
|
||||||
symbol: "emptyCircle",
|
symbol: "emptyCircle",
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div ref="chart" style="width: 100%; height: 220px"></div>
|
<div ref="chart" style="width: 100%; height: 200px"></div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup >
|
<script setup >
|
||||||
|
@ -60,7 +60,7 @@ let option = {
|
||||||
],
|
],
|
||||||
series: [
|
series: [
|
||||||
{
|
{
|
||||||
name: "职工养老保险发放人次",
|
name: "特困发放人次",
|
||||||
type: "bar",
|
type: "bar",
|
||||||
data: [2.0, 4.9, 7.0, 23.2, 25.6],
|
data: [2.0, 4.9, 7.0, 23.2, 25.6],
|
||||||
showBackground: true,
|
showBackground: true,
|
||||||
|
@ -81,7 +81,7 @@ let option = {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "城乡养老保险发放人次",
|
name: "低保发放人次",
|
||||||
type: "bar",
|
type: "bar",
|
||||||
data: [2.6, 5.9, 9.0, 26.4, 28.7],
|
data: [2.6, 5.9, 9.0, 26.4, 28.7],
|
||||||
showBackground: true,
|
showBackground: true,
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div ref="chart" style="width: 100%; height: 220px"></div>
|
<div ref="chart" style="width: 100%; height: 200px"></div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup >
|
<script setup >
|
||||||
|
@ -15,7 +15,7 @@ let option = {
|
||||||
},
|
},
|
||||||
legend: {
|
legend: {
|
||||||
top: "8%",
|
top: "8%",
|
||||||
right: "5%",
|
right: "11%",
|
||||||
textStyle: {
|
textStyle: {
|
||||||
fontSize: 12,
|
fontSize: 12,
|
||||||
color: "#ccc",
|
color: "#ccc",
|
||||||
|
@ -23,8 +23,8 @@ let option = {
|
||||||
},
|
},
|
||||||
grid: {
|
grid: {
|
||||||
left: "1%",
|
left: "1%",
|
||||||
right: "4%",
|
right: "10%",
|
||||||
bottom: "3%",
|
bottom: "0%",
|
||||||
containLabel: true,
|
containLabel: true,
|
||||||
},
|
},
|
||||||
calculable: true,
|
calculable: true,
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div ref="chart" style="width: 100%; height: 220px"></div>
|
<div ref="chart" style="width: 100%; height: 200px"></div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup >
|
<script setup >
|
||||||
|
@ -16,7 +16,7 @@ let option = {
|
||||||
legend: {
|
legend: {
|
||||||
// data: ["80-90补贴人次", "90-98补贴人次", "99以上补贴人次"],
|
// data: ["80-90补贴人次", "90-98补贴人次", "99以上补贴人次"],
|
||||||
top: "8%",
|
top: "8%",
|
||||||
right: "15%",
|
right: "11%",
|
||||||
textStyle: {
|
textStyle: {
|
||||||
fontSize: 12,
|
fontSize: 12,
|
||||||
color: "#ccc",
|
color: "#ccc",
|
||||||
|
@ -24,7 +24,7 @@ let option = {
|
||||||
},
|
},
|
||||||
grid: {
|
grid: {
|
||||||
left: "1%",
|
left: "1%",
|
||||||
right: "4%",
|
right: "10%",
|
||||||
bottom: "3%",
|
bottom: "3%",
|
||||||
containLabel: true,
|
containLabel: true,
|
||||||
},
|
},
|
||||||
|
@ -58,7 +58,7 @@ let option = {
|
||||||
},
|
},
|
||||||
series: [
|
series: [
|
||||||
{
|
{
|
||||||
name: "80-90补贴人次",
|
name: "职工养老保险金额",
|
||||||
type: "line",
|
type: "line",
|
||||||
stack: "Total",
|
stack: "Total",
|
||||||
symbol: "emptyCircle",
|
symbol: "emptyCircle",
|
||||||
|
@ -72,22 +72,7 @@ let option = {
|
||||||
data: [120, 132, 101, 134, 90],
|
data: [120, 132, 101, 134, 90],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "90-98补贴人次",
|
name: "城乡养老保险金额",
|
||||||
type: "line",
|
|
||||||
stack: "Total",
|
|
||||||
symbol: "emptyCircle",
|
|
||||||
|
|
||||||
symbolSize: 10,
|
|
||||||
itemStyle: {
|
|
||||||
borderColor: "#E8FF00",
|
|
||||||
borderWidth: 1,
|
|
||||||
color: "#E8FF00",
|
|
||||||
},
|
|
||||||
|
|
||||||
data: [220, 182, 191, 234, 290],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "99以上补贴人次",
|
|
||||||
type: "line",
|
type: "line",
|
||||||
stack: "Total",
|
stack: "Total",
|
||||||
symbol: "emptyCircle",
|
symbol: "emptyCircle",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="module">
|
<div class="module">
|
||||||
<div class="displayFlex">
|
<div class="displayFlex left_bg" >
|
||||||
<div class="flex1" >
|
<div class="flex1" >
|
||||||
<div class="yd_title left_1">
|
<div class="yd_title left_1">
|
||||||
<span class="text">
|
<span class="text">
|
||||||
|
@ -31,7 +31,7 @@
|
||||||
<ePie v-if="leftchoose.first == '1'"></ePie>
|
<ePie v-if="leftchoose.first == '1'"></ePie>
|
||||||
<ePie2 v-else></ePie2>
|
<ePie2 v-else></ePie2>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex1">
|
<div class="flex1" style="margin-top:10px;">
|
||||||
<div class="yd_title left_2">
|
<div class="yd_title left_2">
|
||||||
<span class="text">
|
<span class="text">
|
||||||
<img
|
<img
|
||||||
|
@ -58,9 +58,10 @@
|
||||||
/>
|
/>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<eP2></eP2>
|
<eP2 v-if="leftchoose.second == '1'"></eP2>
|
||||||
|
<eP2_2 v-else/>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex1">
|
<div class="flex1" style="margin-top:10px;">
|
||||||
<div class="yd_title left_3">
|
<div class="yd_title left_3">
|
||||||
<span class="text">
|
<span class="text">
|
||||||
<img
|
<img
|
||||||
|
@ -212,6 +213,7 @@
|
||||||
import eBubble from "./echarts/bubble.vue";
|
import eBubble from "./echarts/bubble.vue";
|
||||||
import ePie from "./echarts/pie.vue";
|
import ePie from "./echarts/pie.vue";
|
||||||
import eP2 from "./echarts/eP2.vue";
|
import eP2 from "./echarts/eP2.vue";
|
||||||
|
import eP2_2 from "./echarts/eP2_2.vue";
|
||||||
import eP3 from "./echarts/eP3.vue";
|
import eP3 from "./echarts/eP3.vue";
|
||||||
import eP3_2 from "./echarts/eP3_2.vue";
|
import eP3_2 from "./echarts/eP3_2.vue";
|
||||||
import ePie2 from "./echarts/pie2.vue";
|
import ePie2 from "./echarts/pie2.vue";
|
||||||
|
@ -236,11 +238,11 @@ const change = (name, index) => {
|
||||||
.displayFlex {
|
.displayFlex {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
flex: 1;
|
// flex: 1;
|
||||||
}
|
}
|
||||||
.flex1 {
|
.flex1 {
|
||||||
flex: 1;
|
// flex: 1;
|
||||||
padding: 0 28px;
|
// padding: 0 28px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
.flex2 {
|
.flex2 {
|
||||||
|
@ -257,7 +259,7 @@ const change = (name, index) => {
|
||||||
// background-repeat: no-repeat;
|
// background-repeat: no-repeat;
|
||||||
// background-size: 100% 100%;
|
// background-size: 100% 100%;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
width: 100%;
|
width: 90%;
|
||||||
height: 36px;
|
height: 36px;
|
||||||
position: relative;
|
position: relative;
|
||||||
.text {
|
.text {
|
||||||
|
@ -346,12 +348,14 @@ const change = (name, index) => {
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: 100% 100%;
|
background-size: 100% 100%;
|
||||||
}
|
}
|
||||||
.text_1_left {
|
.left_bg {
|
||||||
// background-image: url(@/assets/images/ylbx_1.png);
|
width:642px;
|
||||||
// background-repeat: no-repeat;
|
box-sizing: border-box;
|
||||||
// background-size: 100% 100%;
|
padding-left:50px;
|
||||||
width: 100px;
|
margin-right:28px;
|
||||||
height: 50px;
|
background-image: url(@/assets/images/left_bg.png);
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-size: 100% 100%;
|
||||||
}
|
}
|
||||||
.basicInformation {
|
.basicInformation {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
Loading…
Reference in New Issue