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.
23 lines
631 B
23 lines
631 B
4 years ago
|
define(function (require, exports, module) {
|
||
|
let Service = require('apps/rht/base/rhtService');
|
||
|
let prefix = 'cn.qdhezheng.rht.app.sku.sku080211.';
|
||
|
let prefixpubsysBaseBL = 'cn.qdhezheng.rht.app.comm.plugins.sku.';
|
||
|
|
||
|
return {
|
||
|
GetSkuExCtl:function(){
|
||
|
return Service.doPlugin(prefix + 'GetSkuExCtl',{
|
||
|
})
|
||
|
},
|
||
|
GetPluEx:function(pluId){
|
||
|
return Service.doPlugin(prefix + 'GetPluEx',{
|
||
|
pluid:pluId
|
||
|
})
|
||
|
},
|
||
|
GetDefSku:function(){
|
||
|
return Service.doPlugin(prefix + 'GetDefSku',{
|
||
|
})
|
||
|
}
|
||
|
};
|
||
|
|
||
|
})
|