图片组件叫'经营总览跳转' 然后一个点击事件下面两个动作 根据登录用户角色限制不住权限 setTimeout(function() { var a = position; var b = role; var c = user;
// 获取组件引用 var widget = duchamp.getWidgetByName('经营总览跳转');
if (b === '驾驶舱-总经理部') { widget.setVisible(true); } else if (b === '驾驶舱-公司党委') { widget.setVisible(true); } else if (b === '驾驶舱-大电机研究所') { widget.setVisible(true); } else if (b === '驾驶舱-公司纪委') { widget.setVisible(true); } else if (b === '驾驶舱-企业管理发展部') { widget.setVisible(true); } else { widget.setVisible(false); // 其他角色隐藏组件 } }, 1000); |