/// /// 录播时间段设置 [Pub_ApplicationTimeSetting] Ajax提交类 /// var ApplicationTimeSettingAjax = new Object(); /// /// 录播时间段设置 [Pub_ApplicationTimeSetting] 获取记录信息 /// ApplicationTimeSettingAjax.GetInfo = function (key, send, fun, target, html) { return Global.Ajax( { ajaxCache: false, ajaxUrl: "/Ajax.aspx?AVA.ResourcesPlatform.Ajax.Pub.ApplicationTimeSettingAjax.Get", ajaxData: "key=" + encodeURIComponent(key), ajaxAsync: true, ajaxFunSuccess: fun }, send, target, html); }; /// /// 录播时间段设置 [Pub_ApplicationTimeSetting] 添加记录 /// ApplicationTimeSettingAjax.Insert = function (form, send, fun, target, html) { return Global.Ajax( { ajaxCache: false, ajaxUrl: "/Ajax.aspx?AVA.ResourcesPlatform.Ajax.Pub.ApplicationTimeSettingAjax.Insert", ajaxData: Global.GetFormValue(form), ajaxAsync: true, ajaxFunSuccess: fun }, send, target, html); }; /// /// 录播时间段设置 [Pub_ApplicationTimeSetting] 修改记录 /// ApplicationTimeSettingAjax.Update = function (form, send, fun, target, html) { return Global.Ajax( { ajaxCache: false, ajaxUrl: "/Ajax.aspx?AVA.ResourcesPlatform.Ajax.Pub.ApplicationTimeSettingAjax.Update", ajaxData: Global.GetFormValue(form), ajaxAsync: true, ajaxFunSuccess: fun }, send, target, html); }; /// /// 录播时间段设置 [Pub_ApplicationTimeSetting] 删除记录 /// ApplicationTimeSettingAjax.Delete = function(key, send, fun, target, html) { return Global.Ajax( { ajaxCache: false, ajaxUrl: "/Ajax.aspx?AVA.ResourcesPlatform.Ajax.Pub.ApplicationTimeSettingAjax.Delete", ajaxData: "key=" + encodeURIComponent(key), ajaxAsync: true, ajaxFunSuccess: fun }, send, target, html); }; /// /// 录播时间段设置 [Pub_ApplicationTimeSetting] 批量删除记录 /// ApplicationTimeSettingAjax.BatchDelete = function (key, send, fun, target, html) { return Global.Ajax( { ajaxCache: false, ajaxUrl: "/Ajax.aspx?AVA.ResourcesPlatform.Ajax.Pub.ApplicationTimeSettingAjax.BatchDelete", ajaxData: key, ajaxAsync: true, ajaxFunSuccess: fun }, send, target, html); }; /******************************************* * 以下为自定义方法 *******************************************/