series: [
{
data: [
{
name: "工序1-1",
value: [0, 1],
label: {
normal: {
show: true,
formatter: function (params) {
console.log(params, 123);
let res =
params.name +
"\n" +
"\n" +
// "工序名称:" +
params.data.processName +
"\n" +
"\n" +
// "工位类型:" +
that.stationOptionsList[params.data.workCellType] +
"\n" +
"\n" +
// "工作中心:" +
params.data.workCenterName;
console.log(res);
return res;
},
textStyle: {
fontSize: 12,
color: "#ccc",
},
},
},
},
],
},
],