|
|
@@ -5,7 +5,9 @@ using System.Collections.Generic; |
|
|
|
using System.Data; |
|
|
|
using System.IO; |
|
|
|
using System.Linq; |
|
|
|
using System.Net.Http; |
|
|
|
using System.Web.Mvc; |
|
|
|
using Learun.Application.OA; |
|
|
|
|
|
|
|
namespace Learun.Application.Web.Controllers |
|
|
|
{ |
|
|
@@ -595,6 +597,15 @@ namespace Learun.Application.Web.Controllers |
|
|
|
{ |
|
|
|
return View(); |
|
|
|
} |
|
|
|
|
|
|
|
private NoticeIBLL noticeIBLL = new NoticeBLL(); |
|
|
|
[HttpGet] |
|
|
|
public ActionResult ListContentView(string keyValue) |
|
|
|
{ |
|
|
|
var data = noticeIBLL.GetEntity(keyValue); |
|
|
|
data.F_NewsContent = WebHelper.HtmlDecode(data.F_NewsContent); |
|
|
|
return Content(data.F_NewsContent); |
|
|
|
} |
|
|
|
/// <summary> |
|
|
|
/// 失物招领 |
|
|
|
/// </summary> |
|
|
|