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.
29 lines
928 B
29 lines
928 B
|
|
define(function (require, exports, module) {
|
|
let Service = require('apps/rht/base/rhtService');
|
|
let prefix = 'cn.qdhezheng.rht.app.frs.sys010109.';
|
|
|
|
return {
|
|
getSlideMenuData: function (ps_FunName,ps_Type,ps_Field1,ps_Field2,ps_Field3,ps_Field4,ps_Field5) {
|
|
if (ps_FunName == "GetExists") {
|
|
return Service.doPlugin(prefix + ps_FunName, {
|
|
ps_Type:ps_Type
|
|
});
|
|
}
|
|
if (ps_FunName == "UClearGUID") {
|
|
return Service.doPlugin(prefix + ps_FunName, {
|
|
ps_OrgCode:ps_Field1,
|
|
ps_HzType: ps_Field2
|
|
});
|
|
}
|
|
if (ps_FunName == "SaveExecute") {
|
|
return Service.doPlugin(prefix + ps_FunName, {
|
|
GroupCode:ps_Field1,
|
|
OrgCode: ps_Field2
|
|
});
|
|
}
|
|
}
|
|
};
|
|
|
|
})
|