You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

128 lines
3.2 KiB

2 months ago
<template>
1 month ago
<!-- 投资主体 -->
2 weeks ago
<div style="width: 100%;height: 100%;">
<div class="itemsall">
<span>{{ functionnumber }}</span>
<span>项目总数</span>
</div>
<div ref="chart" style="width: 30rem; height: 100%;"></div>
</div>
1 month ago
</template>
<script>
import * as echarts from 'echarts';
import { investall } from '@/api/ManageApi/index';
export default {
name: 'RingChart',
data() {
return {
2 weeks ago
functionnumber:0,
1 month ago
chartData: [
{ value: 54, name: '国企', itemStyle: { color: '#36C3FB' } },
{ value: 65, name: '民企', itemStyle: { color: '#5B76F9' } },
{ value: 32, name: '外企', itemStyle: { color: '#FAC858' } },
3 weeks ago
{ value: 32, name: '其他', itemStyle: { color: '#50DFB3' } },
1 month ago
],
};
},
mounted() {
this.getData();
},
methods: {
async getData() {
const response = await investall();
if (response && response.code === 200 && response.data) {
2 weeks ago
const totalCount = response.data.reduce((sum, item) => sum + item.count, 0);
this.functionnumber = totalCount;
1 month ago
this.chartData = this.processData(response.data);
this.renderChart();
2 weeks ago
1 month ago
} else {}
2 months ago
},
1 month ago
processData(data) {
2 weeks ago
const names = ['国企', '民企', '外企', '其他'];
1 month ago
const counts = data.map(item => item.count);
return names.map((name, index) => ({
value: counts[index] || 0,
name: name,
itemStyle: { color: ['#36C3FB', '#5B76F9', '#FAC858'][index] },
}));
},
renderChart() {
const chartDom = this.$refs.chart;
const myChart = echarts.init(chartDom);
const option = {
tooltip: {
trigger: 'item'
},
legend: {
orient: 'vertical', // 图例垂直排列
2 weeks ago
right: '18.5%', // 图例在右侧
1 month ago
top: 'center', // 图例垂直居中
2 weeks ago
itemGap: 18, // 右侧间隔
1 month ago
formatter: function (name) {
// 自定义图例显示格式
const item = this.chartData.find(item => item.name === name);
return `${name} ${item.value}`;
}.bind(this)
},
series: [
{
name: '项目分布',
type: 'pie',
radius: ['40%', '60%'],
center: ['30%', '50%'],
data: this.chartData,
label: {
2 weeks ago
show: false
1 month ago
},
emphasis: {
itemStyle: {
shadowBlur: 10,
shadowOffsetX: 0,
shadowColor: 'rgba(0, 0, 0, 0.5)'
2 months ago
}
}
1 month ago
}
]
};
myChart.setOption(option);
2 months ago
}
1 month ago
}
};
</script>
2 weeks ago
<style scoped>
.itemsall {
position: absolute;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
top: 35%;
left: 23%;
}
.itemsall span:nth-child(1) {
font-family: DINbold;
font-weight: 500;
font-size: 1.25rem;
color: #292C33;
text-align: left;
font-style: normal;
text-transform: none;
}
.itemsall span:nth-child(2) {
font-family: alibold;
font-weight: 400;
font-size: 0.68rem;
color: #9E9E9E;
text-align: left;
font-style: normal;
text-transform: none;
}
</style>