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.
 
 
 

25 lines
726 B

;!(function () {
function importResource(path, type) {
var url = Dec.fineServletURL + "/file?path=" + path;
BI.$import(url, type);
}
importResource("com/fr/plugin/bi/web/js/bi.subject.js", "js");
var perentRoute = BI.find(BI.AnalysisRoutes, function (index, item) {
return item.name === "analysis_subject";
});
if (perentRoute.children) {
BI.each(BI.Front.SUPPORT_REPORT, function (index, item) {
perentRoute.children.push(item.route.view);
})
}
//ezreal:协助开发的,后续删
BI.Plugin.config(function (type, options) {
}, function (type, object) {
object.element.attr("shortcut", object.options.type);
});
})();