Echarts rewrites the data view, how to modify the added class without effect?

const getTable = function (opt, xName, yname) {
  console.log(opt);
  const axisData = opt.xAxis[0].data;
  const series = opt.series[0];
  let table = `${"<table class="ccc"><thead><tr>"
    + "<th>"}${xName}</th>`
    + `<th>${yname}</th>`;
  table += "</tr></thead><tbody>";
  for (let i = 0; i < axisData.length; iPP) {
    table += `<tr><td>${axisData[i]}</td>`;
    table += `<td>${series.data[i]}</td></tr>`;
  }
  return table;
};

the class="ccc" here doesn"t work? Is there something wrong?

Nov.02,2021
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3dbe1-2c3c0.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3dbe1-2c3c0.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?