This commit is contained in:
‘937886381’
2026-01-06 17:09:52 +08:00
parent 5605eeab06
commit 51e66cf6e1
145 changed files with 265 additions and 226 deletions

View File

@@ -95,10 +95,10 @@ export default {
case 2: // 实际值:低~高
dataWithIndex.sort((a, b) => a.real - b.real);
break;
case 3: // 目标值:高~低
case 3: // 预算值:高~低
dataWithIndex.sort((a, b) => b.rate - a.rate);
break;
case 4: // 目标值:低~高
case 4: // 预算值:低~高
dataWithIndex.sort((a, b) => a.rate - b.rate);
break;
default:

View File

@@ -153,7 +153,7 @@ export default {
yAxis: [
{
type: 'value',
name: '万元',
name: '%',
nameTextStyle: {
color: 'rgba(0, 0, 0, 0.45)',
fontSize: 12,

View File

@@ -103,7 +103,7 @@ export default {
],
yAxis: {
type: 'value',
name: '万元',
name: '%',
nameTextStyle: {
color: 'rgba(0, 0, 0, 0.45)',
fontSize: 12,

View File

@@ -102,7 +102,7 @@ export default {
this.groupData = this.monthData.group || { rate: 0, diff: 0, real: 0, target: 0 };
// 集团各维度数据数组(单条数据,对应凯盛新能)
const groupTarget = [this.groupData.target]; // 目标值数组
const groupTarget = [this.groupData.target]; // 预算值数组
const groupDiff = [this.groupData.diff]; // 差值数组
const groupReal = [this.groupData.real]; // 实际值数组
const groupRate = [this.groupData.rate]; // 完成率数组
@@ -135,7 +135,7 @@ export default {
// 集团数据(对应凯盛新能)
group: {
locations: ['凯盛新能'], // 集团名称
targets: groupTarget, // 集团目标值数组
targets: groupTarget, // 集团预算值数组
diff: groupDiff, // 集团差值数组
reals: groupReal, // 集团实际值数组
rate: groupRate, // 集团完成率数组

View File

@@ -96,7 +96,7 @@ export default {
this.groupData = this.ytdData.group || { rate: 0, diff: 0, real: 0, target: 0 };
// 集团各维度数据数组(单条数据,对应凯盛新能)
const groupTarget = [this.groupData.target]; // 目标值数组
const groupTarget = [this.groupData.target]; // 预算值数组
const groupDiff = [this.groupData.diff]; // 差值数组
const groupReal = [this.groupData.real]; // 实际值数组
const groupRate = [this.groupData.rate]; // 完成率数组
@@ -129,7 +129,7 @@ export default {
// 集团数据(对应凯盛新能)
group: {
locations: ['凯盛新能'], // 集团名称
targets: groupTarget, // 集团目标值数组
targets: groupTarget, // 集团预算值数组
diff: groupDiff, // 集团差值数组
reals: groupReal, // 集团实际值数组
rate: groupRate, // 集团完成率数组

View File

@@ -145,7 +145,7 @@ export default {
label: {
show: true,
position: 'right',
offset: [-60, 25],
offset: [0, 25],
// 固定label尺寸68px×20px
width: 68,
height: 20,