Merge pull request 'fix:作业批阅柱状图改为百分比显示;' (#321) from yangws into main

Reviewed-on: #321
This commit is contained in:
yangws 2024-10-15 16:36:21 +08:00
commit 1a447b30fb
1 changed files with 7 additions and 1 deletions

View File

@ -32,6 +32,8 @@ function getColor(index) {
//
function initChart() {
const myChart = echarts.init(chartRef.value);
const total = dataList.value.reduce((acc, cur) => acc + cur.value, 0); //
const options = {
tooltip: {
trigger: 'axis',
@ -70,7 +72,11 @@ function initChart() {
label: {
show: true,
position: 'top',
formatter: '{c}人',
formatter: params => {
const value = dataList.value[params.dataIndex].value;
const percentage = ((value / total) * 100).toFixed(2); //
return `${percentage}%`; //
},
color: '#333',
fontSize: 12
}