///
/// 用户组的操作权限[Sys_SecurityGroupAction] Ajax提交类
///
var SecurityGroupActionAjax = new Object();
///
/// 用户组的操作权限[Sys_SecurityGroupAction] 获取记录信息
///
SecurityGroupActionAjax.GetInfo = function (key, send, fun, target, html) {
return Global.Ajax(
{
ajaxCache: false,
ajaxUrl: "/Ajax.aspx?AVA.ResourcesPlatform.Ajax.Sys.SecurityGroupActionAjax.Get",
ajaxData: "key=" + encodeURIComponent(key),
ajaxAsync: true,
ajaxFunSuccess: fun
}, send, target, html);
};
///
/// 用户组的操作权限[Sys_SecurityGroupAction] 添加记录
///
SecurityGroupActionAjax.Insert = function (form, send, fun, target, html) {
return Global.Ajax(
{
ajaxCache: false,
ajaxUrl: "/Ajax.aspx?AVA.ResourcesPlatform.Ajax.Sys.SecurityGroupActionAjax.Insert",
ajaxData: Global.GetFormValue(form),
ajaxAsync: true,
ajaxFunSuccess: fun
}, send, target, html);
};
///
/// 用户组的操作权限[Sys_SecurityGroupAction] 修改记录
///
SecurityGroupActionAjax.Update = function (form, send, fun, target, html) {
return Global.Ajax(
{
ajaxCache: false,
ajaxUrl: "/Ajax.aspx?AVA.ResourcesPlatform.Ajax.Sys.SecurityGroupActionAjax.Update",
ajaxData: Global.GetFormValue(form),
ajaxAsync: true,
ajaxFunSuccess: fun
}, send, target, html);
};
///
/// 用户组的操作权限[Sys_SecurityGroupAction] 删除记录
///
SecurityGroupActionAjax.Delete = function (key, send, fun, target, html) {
return Global.Ajax(
{
ajaxCache: false,
ajaxUrl: "/Ajax.aspx?AVA.ResourcesPlatform.Ajax.Sys.SecurityGroupActionAjax.Delete",
ajaxData: "key=" + encodeURIComponent(key),
ajaxAsync: true,
ajaxFunSuccess: fun
}, send, target, html);
};
/*******************************************
* 以下为自定义方法
*******************************************/
///
/// 用户组权限表[Sys_SecurityGroupMenu] 修改记录
///
SecurityGroupActionAjax.SetAction = function (form, send, fun, target, html) {
return Global.Ajax(
{
ajaxCache: false,
ajaxUrl: "/Ajax.aspx?AVA.ResourcesPlatform.Ajax.Sys.SecurityGroupActionAjax.SetAction",
ajaxData: Global.GetFormValue(form),
ajaxAsync: true,
ajaxFunSuccess: fun
}, send, target, html);
};