fix(性能测试): 修复多个线程组不能设置线程数的问题

This commit is contained in:
Captain.B 2020-12-04 17:56:06 +08:00
parent 7ee9522298
commit 0abd7209e0
2 changed files with 10 additions and 8 deletions

View File

@ -226,8 +226,9 @@ export default {
if (handler.rampUpTime < handler.step) { if (handler.rampUpTime < handler.step) {
handler.step = handler.rampUpTime; handler.step = handler.rampUpTime;
} }
let color = ['#60acfc', '#32d3eb', '#5bc49f', '#feb64d', '#ff7c7c', '#9287e7', '#ca8622', '#bda29a', '#6e7074', '#546570', '#c4ccd3'];
handler.options = { handler.options = {
color: ['#60acfc', '#32d3eb', '#5bc49f', '#feb64d', '#ff7c7c', '#9287e7', '#ca8622', '#bda29a', '#6e7074', '#546570', '#c4ccd3'], color: color,
xAxis: { xAxis: {
type: 'category', type: 'category',
boundaryGap: false, boundaryGap: false,
@ -261,10 +262,10 @@ export default {
normal: { normal: {
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{ color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
offset: 0, offset: 0,
color: hexToRgba(handler.options.color[i], 0.3), color: hexToRgba(color[i % color.length], 0.3),
}, { }, {
offset: 0.8, offset: 0.8,
color: hexToRgba(handler.options.color[i], 0), color: hexToRgba(color[i % color.length], 0),
}], false), }], false),
shadowColor: 'rgba(0, 0, 0, 0.1)', shadowColor: 'rgba(0, 0, 0, 0.1)',
shadowBlur: 10 shadowBlur: 10
@ -272,7 +273,7 @@ export default {
}, },
itemStyle: { itemStyle: {
normal: { normal: {
color: hexToRgb(handler.options.color[i]), color: hexToRgb(color[i % color.length]),
borderColor: 'rgba(137,189,2,0.27)', borderColor: 'rgba(137,189,2,0.27)',
borderWidth: 12 borderWidth: 12
} }

View File

@ -268,8 +268,9 @@ export default {
if (handler.rampUpTime < handler.step) { if (handler.rampUpTime < handler.step) {
handler.step = handler.rampUpTime; handler.step = handler.rampUpTime;
} }
let color = ['#60acfc', '#32d3eb', '#5bc49f', '#feb64d', '#ff7c7c', '#9287e7', '#ca8622', '#bda29a', '#6e7074', '#546570', '#c4ccd3'];
handler.options = { handler.options = {
color: ['#60acfc', '#32d3eb', '#5bc49f', '#feb64d', '#ff7c7c', '#9287e7', '#ca8622', '#bda29a', '#6e7074', '#546570', '#c4ccd3'], color: color,
xAxis: { xAxis: {
type: 'category', type: 'category',
boundaryGap: false, boundaryGap: false,
@ -302,10 +303,10 @@ export default {
normal: { normal: {
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{ color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
offset: 0, offset: 0,
color: hexToRgba(handler.options.color[i], 0.3), color: hexToRgba(color[i % color.length], 0.3),
}, { }, {
offset: 0.8, offset: 0.8,
color: hexToRgba(handler.options.color[i], 0), color: hexToRgba(color[i % color.length], 0),
}], false), }], false),
shadowColor: 'rgba(0, 0, 0, 0.1)', shadowColor: 'rgba(0, 0, 0, 0.1)',
shadowBlur: 10 shadowBlur: 10
@ -313,7 +314,7 @@ export default {
}, },
itemStyle: { itemStyle: {
normal: { normal: {
color: hexToRgb(handler.options.color[i]), color: hexToRgb(color[i % color.length]),
borderColor: 'rgba(137,189,2,0.27)', borderColor: 'rgba(137,189,2,0.27)',
borderWidth: 12 borderWidth: 12
} }