12345678910111213141516171819202122232425262728293031 |
- @{
- ViewBag.Title = @Model.Title;
- }
- @using Hospital.Controllers
- @using Hospital.Model.Models
- @using Webdiyer.WebControls.Mvc
- @model Hospital.Model.Models.ReportInnerAnnounce
- <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-bullhorn"></i> 内部公告 <small>详细内容</small>
- <a href="@Url.Action("Index", "InterAnnounce")" 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.ReportTime</div>
- <p class="lead form-actions" style="padding-left: 50px; word-break:break-all;"> @Html.Raw(Model.Cont)</p>
- <div class="form-actions">
- <a class="btn pull-right" href="@Url.Action("Index", "InterAnnounce")">关闭</a>
- </div>
- </form>
|