|
|
|
@ -261,8 +261,10 @@ export class WorkingAreaComponent extends EventEmitter implements OnInit, AfterV
|
|
|
|
|
* @param id 图标ID |
|
|
|
|
* @param b 显示/隐藏 |
|
|
|
|
*/ |
|
|
|
|
public setIconVisible(id: string, b: boolean) { |
|
|
|
|
this.backgroundImage.getChildByName(id).visible = b; |
|
|
|
|
public setIconVisible(ids: string[], b: boolean) { |
|
|
|
|
ids.forEach(item => { |
|
|
|
|
this.backgroundImage.getChildByName(item).visible = b; |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
/** |
|
|
|
|
* 版本检查 |
|
|
|
|