<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="MyExamineVideo.ascx.cs" Inherits="AVA.ResourcesPlatform.WebUI.Control.My.MyExamineVideo" %> <%= new MyExamineNavTopInstance(this) { Local= MyExamineNavTopItem.视频审核 }.ToHtml()%>
本平台共有<%= this.Query.RecordCount %>个视频需要审核
名称: <%= new HtmlText("Name", this.Name) { Width = 120 }%> 日期从 <%= new HtmlText("CreateTimeBegin", this.CreateTimeBegin.ToShortDate()) { Width = 80 }%> 至 <%= new HtmlText("CreateTimeEnd", this.CreateTimeEnd.ToShortDate()) { Width = 80 }%> <%= new HtmlHidden("Key","MyExamineVideo") %> <%= new HtmlSubmit("查询") %>
<%= new HtmlButton("确认", "VideoBatchExamine(this);"){ Class="btn btn-success pull-right" }%> <%= new HtmlButton("拒绝", "VideoBatchUnExamine(this);") { Class = "btn btn-warning pull-right" }%>
<%= new HtmlButton("删除", "VideoBatchDelete(this);"){ Class="btn-danger pull-right" }%>
<%----%> <% for (int i = 0; i <= this.ListVideo.Count - 1; i++) { var video = this.ListVideo[i]; %> <% } %>
封面 名称 状态 日期 大小 学科 操作序号
<%= new HtmlCheckBox() { Value = SetKey(video.Guid, video.Version), Class = "trsel", Title = DefineEnum.选择_不选.Define() }%>
<%= new HtmlAnchor( new HtmlImg(SettingGroup.VideoCover(video), video.Name) { OnErrorImg=SettingGroup.DefaultImg} ) { Href = WebUrl.VideoPlay(video.Guid), Title=video.Name, Target = "_blank" }%> " href="<%= WebUrl.VideoPlay(video.Guid) %>" target="_blank">

<%= new HtmlAnchor(video.Name) { Href = WebUrl.VideoPlay(video.Guid), Target = "_blank" ,Suffix="...",TextLength=20 }%>

<% var classStatus = ""; if (video.Status == (int)AVA.ResourcesPlatform.Model.Pub.VideoStatusEnum.有效) { classStatus = "pass"; } else { classStatus = ""; } %> <%= ((AVA.ResourcesPlatform.Model.Pub.VideoStatusEnum)video.Status).Define() %>
<% var classExamine = ""; if (video.Examine == (int)AVA.ResourcesPlatform.Model.Pub.VideoExamineEnum.审核通过) { classExamine = "pass"; } else if (video.Examine == (int)AVA.ResourcesPlatform.Model.Pub.VideoExamineEnum.审核不通过) { } else { classExamine = ""; } %> <%= ((AVA.ResourcesPlatform.Model.Pub.VideoExamineEnum)video.Examine).Define() %>
<% var videoConvertStatus = ""; if (video.VideoConvertStatus == (int)AVA.ResourcesPlatform.Model.Pub.VideoVideoConvertStatusEnum.已转换) { videoConvertStatus = "pass"; } else { videoConvertStatus = ""; } %> <%= ((AVA.ResourcesPlatform.Model.Pub.VideoVideoConvertStatusEnum)video.VideoConvertStatus).Define() %>
<% if (video.LockVideo == (int)AVA.ResourcesPlatform.Model.Pub.VideoLockVideoEnum.锁定) { %> <%= new HtmlSpan("锁定") { Title = video.ParentLockUser.UserName + " " + video.LockDateTime + " " + video.LockDescription }.Style(new { Color = "Red" })%> <% } %>
<%= video.CreateTime.ToShortDate() %>

大小:<%= AVA.ResourcesPlatform.Config.Helper.FormatSize(video.FileSize.ToDouble()) %>
时长:<%= AVA.ResourcesPlatform.Config.Helper.FormatSecond(video.Period) %>

<%= video.ParentCategory.Name %>

<% var list = new List(); list.Add(new HtmlAnchor("删除") { Href = "#delete", OnClick = "VideoDelete(this,'" + SetKey(video.Guid, video.Version) + "'); return false;" }); //list.Add(new HtmlAnchor("下载") { Href = SettingGroup.VideoFileDownload(video) }); for (int x = 0; x <= list.Count - 1; x++) { var anchor = list[x]; %> <%= anchor %> <% if ((x+1) % 2 == 0 && x != 0 && x != list.Count - 1) { %>
<% } else if (x != list.Count - 1) { %>
<% } } %>

全选 - 取消
<%= new PagerAjaxInstance(this) { RecordCount = this.Query.RecordCount, PageSize = this.Query.PageSize, PageIndex = this.Query.PageIndex, PageJsFn = WebUrl.MyExamineVideo(int.MaxValue, this.Name, this.CreateTimeBegin.ToString(null), this.CreateTimeEnd.ToString(null)) }.ToHtml()%>