<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="MySTUserVideoList.ascx.cs" Inherits="AVA.ResourcesPlatform.WebUI.Control.My.MySTUserVideoList" %> <%= new MySubjectNavInstance(this) { Local = MySubjectNavItem.评审专家管理, Subject = this.Subject }.ToHtml()%>
评审:<%= this.STUser.ParentUser.TrueName %>共分配了<%= this.Query.RecordCount %>个视频
视频名称: <%= new HtmlText("Name", this.Name) { Width = 120 }%> 确认状态: <%= new HtmlSelect("ConfirmStatus", "Value", "Key", "Key") { Option = typeof(AVA.ResourcesPlatform.Model.Pub.SubjectVideoConfirmStatusEnum) }.InsertOption("::选择::", "", 0).SelectValue(this.ConfirmStatus)%> <%= new HtmlHidden("Key","MySTUserVideoList") %> <%= new HtmlHidden("ParentSubject",this.Subject.Guid) %> <%= new HtmlHidden("ParentSTUser",this.STUser.Guid) %> <%= new HtmlSubmit("查询") %> <%= new HtmlReset("清除") { Class="btn"}%> <%= new HtmlButton("删除", "STUserVideoBatchDelete(this);"){ Class="btn btn-danger pull-right" }%>
<% for (int i = 0; i <= this.ListSTUserVideo.Count - 1; i++) { var subjectVideo = this.ListSTUserVideo[i]; var subject = this.ListSTUserVideo[i].ParentSubjectVideo.ParentSubject; var video = this.ListSTUserVideo[i].ParentSubjectVideo.ParentVideo; %> <% } %>
视频 用户 时间 操作
<%= new HtmlCheckBox() { Value = SetKey(subjectVideo.Guid, subjectVideo.Version), Class = "trsel", Title = DefineEnum.选择_不选.Define() }%>
<%= new HtmlAnchor( new HtmlImg(SettingGroup.VideoCover(video), video.Name) { OnErrorImg=SettingGroup.DefaultImg } ) { Href=WebUrl.SubjectPlay(subject.Guid, video.Guid), Title=video.Name, Target="_blank" }%>

<%= new HtmlAnchor(video.Name) { Href = WebUrl.SubjectPlay(subject.Guid, video.Guid), Target = "_blank" }%>
<% 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() %>
播放:<%= video.VideoView %> 评论:<%= video.CommentCount %>

<%= video.ParentUser.ParentDomain.Name %>
<%= new HtmlAnchor(video.Author) { Href= WebUrl.Show(video.ParentUser.ParentDomain.Code,video.ParentUser.UserName) }%> ( <%= new HtmlAnchor(video.ParentUser.UserName) { Href= WebUrl.Show(video.ParentUser.ParentDomain.Code,video.ParentUser.UserName) }%> )
大小:<%= AVA.ResourcesPlatform.Config.Helper.FormatSize(video.FileSize.ToDouble()) %>
时长:<%= video.Period %>秒
权限:<%= ((AVA.ResourcesPlatform.Model.Pub.VideoShareEnum)video.Share).Define() %>
删除 | <%= new HtmlAnchor("预览") { Href = WebUrl.SubjectPlay(subject.Guid, video.Guid) }%>
全选 - 取消
<%= new PagerAjaxInstance(this) { RecordCount = this.Query.RecordCount, PageSize = this.Query.PageSize, PageIndex = this.Query.PageIndex, PageJsFn = WebUrl.MySTUserVideoList(this.STUser.Guid, int.MaxValue, this.Name, this.ConfirmStatus.ToString(null)) }.ToHtml()%>