linwe
2024-05-23 d8a1ca0a03ae1cc37dc26eb23d969fd92ce62169
src/util/util.js
@@ -473,3 +473,19 @@
    }
  }
};
//转换房屋标签颜色
export const setHouseLabelColor = (color) => {
  let obj = {
    blue: "#4397F7",
    yellow: "#FFB42B",
    green: "#30D17C",
  };
  for (let i in obj) {
    if (color == i) {
      return obj[i];
    }
  }
};