@using WeApp.TrainingCampGroup.Dto @{ Layout = "~/Views/Shared/Layout/_Layout.Stu.cshtml"; CampGroupDto group = ViewBag.Group; bool isLeader = ViewBag.IsLeader; string id = group.Id, campNo = group.CampNo, disabled1 = isLeader ? "" : "disabled", disabled2 = isLeader ? "disabled" : ""; var name = isLeader ? "指挥长" : "学员"; ViewBag.Title = name + "屏(" + group.Name + ")"; } @section css{ }
@section scripts { }