@using DTO; @{ ViewBag.Title = "ExpertTestTopic"; Layout = null; List ExpertTestTopicDTOs = ViewBag.listExpertTestTopicDTO as List; //问题类型 } @SiteConfig.SiteName @if (ExpertTestTopicDTOs != null && ExpertTestTopicDTOs.Count > 0) { @{ int i = 1; } @foreach (var ExpertTestTopicDTO in ExpertTestTopicDTOs) { i++; }
序号 题型 知识点 区域 试题 重点标注 审核 解析
@i @Html.Raw(ExpertTestTopicDTO.TopictypeName) @Html.Raw(ExpertTestTopicDTO.ZhishitypeName) @Html.Raw(ExpertTestTopicDTO.AreaName) @Html.Raw(ExpertTestTopicDTO.Topic) @Html.Raw(ExpertTestTopicDTO.ZhongdianName) @Html.Raw(ExpertTestTopicDTO.ShenpiStatusName) @Html.Raw(ExpertTestTopicDTO.JiexiStatusName)
}