Details.cshtml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. @model Hospital.Model.D_Models.Models.D_NcisAnnouncement
  2. @{
  3. ViewBag.Title = Model.Title;
  4. Layout = "~/Views/Shared/_Layout.cshtml";
  5. }
  6. <style type="text/css">
  7. .content span {
  8. background:none !important;
  9. }
  10. </style>
  11. <div class="page-header">
  12. <h3>
  13. @if (ViewBag.Logo != null)
  14. {
  15. <img src="@ViewBag.Logo" id="logoImg" style="margin:0px 5px 5px 0px;" />
  16. }
  17. <i class="fa fa-volume-down"></i> 卫健委更新内容 <small>详细内容</small>
  18. <a href="@Url.Action("Index", "NcisAnnouncement", new { Area = "Admin"})" class='backbutton'><i class="icon-white fa fa-arrow-circle-left"></i>返回</a>
  19. </h3>
  20. </div>
  21. <form class="form-horizontal well">
  22. <h4 class="pagination-centered">
  23. @Model.Title
  24. </h4>
  25. <div class="muted pagination-centered ">@Model.AddTime</div>
  26. <p class="lead form-actions" style="padding-left: 50px; word-break:break-all;"> @Html.Raw(Model.Announcement)</p>
  27. <div class="form-actions">
  28. <a class="btn pull-right" href="@Url.Action("Index", "NcisAnnouncement", new { Area = "Admin"})">关闭</a>
  29. </div>
  30. </form>