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