Lou
2024-04-08 3aceaa16063d39b6f1ff7dc11d268fde85ee63a9
src/util/util.js
@@ -458,3 +458,18 @@
  return null; // 如果找不到目标id,返回null
};
//转换标签颜色
export const setLabelColor = (color) => {
  let obj = {
    red: "#EA1F1F",
    yellow: "#FFB42B",
    green: "#30D17C",
  };
  for (let i in obj) {
    if (color == i) {
      return obj[i];
    }
  }
};