登录集成插件
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.
 
 
 

35 lines
1.2 KiB

!(function () {
BI.Plugin.config(function (type, options) {
}, function (type, object) {
object.element.attr("shortcut", object.options.type);
});
Dec.Utils = Dec.Utils || {};
BI.extend(Dec.Utils, {
getPluginIntegrateConfig: function (callback) {
Dec.reqGet("/third/auth/conf", "", callback);
},
updatePluginIntegrateConfig: function (val, callback) {
Dec.reqPost("/third/auth/conf", val, callback);
},
getWebStartInfo: function (callback) {
Dec.reqGet("/third/auth/username/token", "", callback);
}
});
BI.config("dec.constant.system.tabs", function (items) {
items.push({
value: "integration",
text: "登录集成",
cardType: "dec.plugin.system.integration"
});
return items;
});
var commonPath = Dec.fineServletURL + "/file?path=com/fr/plugin/decision/integration/web/js/";
BI.$import(commonPath + "constant.js");
BI.$import(commonPath + "button_group.item.js");
BI.$import(commonPath + "model.pane.js");
BI.$import(commonPath + "pane.js");
BI.$import(commonPath + "protocolcheck.js");
})();