|
|
|
@ -32,7 +32,7 @@
|
|
|
|
|
} |
|
|
|
|
moduleInjection[xtype] = cls; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return function () { |
|
|
|
|
return BI.Modules.getModule(xtype); |
|
|
|
|
}; |
|
|
|
@ -45,7 +45,7 @@
|
|
|
|
|
} else { |
|
|
|
|
constantInjection[xtype] = cls; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return function () { |
|
|
|
|
return BI.Constants.getConstant(xtype); |
|
|
|
|
}; |
|
|
|
@ -58,7 +58,7 @@
|
|
|
|
|
} else { |
|
|
|
|
modelInjection[xtype] = cls; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return function (config) { |
|
|
|
|
return BI.Models.getModel(xtype, config); |
|
|
|
|
}; |
|
|
|
@ -71,7 +71,7 @@
|
|
|
|
|
} else { |
|
|
|
|
storeInjection[xtype] = cls; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return function (config) { |
|
|
|
|
return BI.Stores.getStore(xtype, config); |
|
|
|
|
}; |
|
|
|
@ -81,10 +81,10 @@
|
|
|
|
|
BI.service = BI.service || function (xtype, cls) { |
|
|
|
|
if (serviceInjection[xtype] != null) { |
|
|
|
|
_global.console && console.error("service: [" + xtype + "] 已经注册过了"); |
|
|
|
|
} else { |
|
|
|
|
serviceInjection[xtype] = cls; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
serviceInjection[xtype] = cls; |
|
|
|
|
|
|
|
|
|
return function (config) { |
|
|
|
|
return BI.Services.getService(xtype, config); |
|
|
|
|
}; |
|
|
|
@ -97,7 +97,7 @@
|
|
|
|
|
} else { |
|
|
|
|
providerInjection[xtype] = cls; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return function (config) { |
|
|
|
|
return BI.Providers.getProvider(xtype, config); |
|
|
|
|
}; |
|
|
|
@ -402,8 +402,6 @@
|
|
|
|
|
BI.shortcut = BI.component = BI.shortcut || function (xtype, cls) { |
|
|
|
|
if (kv[xtype] != null) { |
|
|
|
|
_global.console && console.error("组件: [" + xtype + "] 已经注册过了"); |
|
|
|
|
|
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
if (cls) { |
|
|
|
|
cls["xtype"] = xtype; |
|
|
|
|