merge "feature/1002595" into "main" 1002595 Created-by: lizi Author-id: 7030146 MR-id: 7768 Commit-by: lizi Merged-by: Kevin Description: merge "feature/1002595" into "main" 1002595 See merge request: zhcqdn00001/front!48
@@ -192,6 +192,22 @@ onMounted(() => {
const rect = document.getElementById("graph")?.getBoundingClientRect()
if (rect) {
graph = initGraph(rect.width, rect.height)
+ graph.node((node) => {
+ if (node.label === "建筑工程" || node.label === "工程设计") {
+ return {
+ style: {
+ fill: "#FF8000",
+ stroke: "#FF8000",
+ }
+ };
+ fill: "#00FA9A",
+ stroke: "#00FA9A",
+ },
+ });
findName(keyword.value)
}
});