This commit is contained in:
yunkexin 2026-05-12 11:34:09 +08:00
parent 08f404d8f9
commit d442f4bb46
2 changed files with 3 additions and 2 deletions

View File

@ -250,9 +250,9 @@ class HiddenSolve extends React.Component {
const companyNames = hiddenRectifyList.map((item) => item.companyName);
const majorTotal = hiddenRectifyList.map((item) => item.majorCount);
const majorRectified = hiddenRectifyList.map((item) => (item.majorCount || 0) - (item.majorCountNo || 0));
const majorRectified = hiddenRectifyList.map((item) => item.majorCountNo);
const generalTotal = hiddenRectifyList.map((item) => item.generalCount);
const generalRectified = hiddenRectifyList.map((item) => (item.generalCount || 0) - (item.generalCountNo || 0));
const generalRectified = hiddenRectifyList.map((item) => item.generalCountNo);
const option = {
title: {

View File

@ -374,6 +374,7 @@ class HomeContent extends React.Component {
},
label: { show: true, position: 'top', textStyle: { color: '#000', fontSize: 12 }, formatter: '{c}' },
barWidth: '60%',
barMaxWidth: 40,
},
],
};