You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

16 lines
431 B

/**
* bi.subject的魔改
*/
;!(function () {
/**
* 新增路由,可以切换在当前的组件
* important
*/
BI.Plugin.configRender("bi.subject", function (renderObject) {
var childrenItems = ((renderObject.routes)[0]).children;
BI.each(BI.Front.SUPPORT_REPORT,function (index,item){
childrenItems.push(item.route.edit);
})
return renderObject;
});
})();