miyuesc / bpmn-process-designer

bpmn-js 工具库
https://juejin.cn/post/7304831120710434868
Apache License 2.0
1.62k stars 460 forks source link

隐藏label事件github上拉的代码没生效,在线demo上生效 #7

Closed ylpmyx closed 3 years ago

ylpmyx commented 3 years ago

尝试去修改了下,发现改成以下代码也可以隐藏label

code

   changeLabelVisibleStatus(status) {
      this.addis.labelVisible = status ? { paletteProvider: ["value", ""] } : false;
      //this.addis.customRenderer = status ? CustomRenderer : false;
      this.reloadProcessDesigner();
    }