@using CRM.Core.Model.Entity @model CRM.Core.DTO.LivePlan.LivePlanInfoDto @using Core.Web.WebHelper @{ ViewBag.Title = "Index"; Layout = "~/Views/Shared/_Layout.cshtml"; } @* *@
@Model.title
@Model.usetypeStr
@Model.deptments
@Model.DeptName
@Model.scene
@Model.scenetypeStr
@Html.Raw(Model.sceneidStr)
@Model.zbtime
@(Model.duration/60)分钟
@{ if (string.IsNullOrEmpty(Model.files)) { 文件为空 } else { var arr = Model.files.Split(new string[] { "," }, StringSplitOptions.RemoveEmptyEntries); for (var i = 0; i < arr.Length; i++) {
@(i)、@Html.Raw((arr[i]))
} } }
@Model.lecturer
@Html.Raw(Model.content)
@if (!string.IsNullOrEmpty(Model.zhiboLink)) {
@Html.Raw(Model.zhiboLink)
} @if (ViewBag.checktype == 1) { if (Model.beforeStatus == (int)CRM.Core.DTO.LivePlan.ComplianceCheckBeforeStatus.提审) { } } else if (ViewBag.checktype == 2) { if (Model.beforeStatus == (int)CRM.Core.DTO.LivePlan.ComplianceCheckBeforeStatus.通过 && (Model.duringStatus == null || Model.duringStatus == (int)CRM.Core.DTO.LivePlan.ComplianceCheckDuringStatus.未检)) { } } else if (ViewBag.checktype == 3) { if (Model.beforeStatus == (int)CRM.Core.DTO.LivePlan.ComplianceCheckBeforeStatus.通过 && (Model.afterStatus == null || Model.afterStatus == (int)CRM.Core.DTO.LivePlan.ComplianceCheckAfterStatus.提审)) { } }
@{ var datalist = ViewBag.LogList as List ; } @if (datalist != null && datalist.Count > 0) { foreach (var d in datalist) { } }
id 时间 操作人 操作 说明
@d.id @d.ctime @d.operatorname @d.operation @if (!string.IsNullOrEmpty(d.memo)) { 查看 }