Details.cshtml 1016 B

12345678910111213141516171819202122232425262728293031
  1. @{
  2. ViewBag.Title = @Model.Title;
  3. }
  4. @using Hospital.Controllers
  5. @using Hospital.Model.Models
  6. @using Webdiyer.WebControls.Mvc
  7. @model Hospital.Model.Models.ReportInnerAnnounce
  8. <div class="page-header">
  9. <h3>
  10. @if (ViewBag.Logo != null)
  11. {
  12. <img src="@ViewBag.Logo" id="logoImg" style="margin:0px 5px 5px 0px;" />
  13. }
  14. <i class="fa fa-bullhorn"></i> 内部公告 <small>详细内容</small>
  15. <a href="@Url.Action("Index", "InterAnnounce")" class='backbutton'><i class="icon-white fa fa-arrow-circle-left"></i>返回</a>
  16. </h3>
  17. </div>
  18. <form class="form-horizontal well">
  19. <h4 class="pagination-centered">
  20. @Model.Title
  21. </h4>
  22. <div class="muted pagination-centered ">@Model.ReportTime</div>
  23. <p class="lead form-actions" style="padding-left: 50px; word-break:break-all;"> @Html.Raw(Model.Cont)</p>
  24. <div class="form-actions">
  25. <a class="btn pull-right" href="@Url.Action("Index", "InterAnnounce")">关闭</a>
  26. </div>
  27. </form>