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.
20 lines
695 B
20 lines
695 B
4 years ago
|
define(function (require, exports, module) {
|
||
|
var Service = require('apps/rht/base/rhtService');
|
||
|
//var prefix = 'cn.qdhezheng.rht.app.bas.bas0403.';
|
||
|
var prefixpubsysBaseBL = 'cn.qdhezheng.rht.app.comm.plugins.sys.';
|
||
|
|
||
|
return {
|
||
|
getSlideMenuData: function (ps_FunName,ps_Type,ps_Field1,ps_Field2,ps_Field3,ps_Field4,ps_Field5) {
|
||
|
return Service.doPlugin(ps_FunName, {
|
||
|
ps_Type:ps_Type,
|
||
|
ps_Field1:ps_Field1,
|
||
|
ps_Field2:ps_Field2,
|
||
|
ps_Field3:ps_Field3,
|
||
|
ps_Field4:ps_Field4,
|
||
|
ps_Field5:ps_Field5
|
||
|
});
|
||
|
}
|
||
|
};
|
||
|
|
||
|
})
|