Lou
2024-01-18 6ad9528f48ad50d6a73a32f967fdf88b0e6b025a
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];
    }
  }
};