12345678910111213141516171819202122232425262728293031323334353637 |
- @model Hospital.Model.D_Models.Models.D_NcisAnnouncement
- @{
- ViewBag.Title = Model.Title;
- Layout = "~/Views/Shared/_Layout.cshtml";
- }
- <style type="text/css">
- .content span {
- background:none !important;
- }
- </style>
- <div class="page-header">
- <h3>
- @if (ViewBag.Logo != null)
- {
- <img src="@ViewBag.Logo" id="logoImg" style="margin:0px 5px 5px 0px;" />
- }
- <i class="fa fa-volume-down"></i> 卫健委更新内容 <small>详细内容</small>
- <a href="@Url.Action("Index", "NcisAnnouncement", new { Area = "Admin"})" class='backbutton'><i class="icon-white fa fa-arrow-circle-left"></i>返回</a>
- </h3>
- </div>
- <form class="form-horizontal well">
- <h4 class="pagination-centered">
- @Model.Title
- </h4>
- <div class="muted pagination-centered ">@Model.AddTime</div>
- <p class="lead form-actions" style="padding-left: 50px; word-break:break-all;"> @Html.Raw(Model.Announcement)</p>
- <div class="form-actions">
- <a class="btn pull-right" href="@Url.Action("Index", "NcisAnnouncement", new { Area = "Admin"})">关闭</a>
- </div>
- </form>
|