ArticleController.cs 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. using CZFW.Framework.Interface;
  2. using CZFW.Framework.Model.Entity;
  3. using CZKJ.GBRS2.Interface;
  4. using CZKJ.GBRS2.WebMVC.Models;
  5. using Microsoft.AspNetCore.Mvc;
  6. using System.Collections.Generic;
  7. using System.ComponentModel;
  8. using System.Linq;
  9. namespace CZKJ.GBRS2.WebMVC.Controllers
  10. {
  11. public class ArticleController : Controller
  12. {
  13. IArticle _articleLogic;
  14. IGallery _gallerylogic;
  15. IType _typeLogic;
  16. IFiles _uploadingFilesLogic;
  17. ISysConfig _sysConfigLogic;
  18. public ArticleController(IGallery gallerylogic, IArticle articleLogic, IType typeLogic, IFiles uploadingFilesLogic, ISysConfig sysConfigLogic)
  19. {
  20. _articleLogic = articleLogic;
  21. _gallerylogic = gallerylogic;
  22. _typeLogic = typeLogic;
  23. _uploadingFilesLogic = uploadingFilesLogic;
  24. _sysConfigLogic = sysConfigLogic;
  25. }
  26. /// <summary>
  27. /// 新闻中心
  28. /// </summary>
  29. /// <returns></returns>
  30. public IActionResult Index()
  31. {
  32. var model = new ArticleIndexModel();
  33. var galleryList = _gallerylogic.GetEntities(x => x.TypeId == 124 || x.TypeId == 125, x => x.SortOrder, ListSortDirection.Descending);
  34. model.GalleryEntity = galleryList.FirstOrDefault(x => x.TypeId == 124) ?? new GalleryEntity();
  35. model.CenterGallery = galleryList.FirstOrDefault(x => x.TypeId == 125) ?? new GalleryEntity();
  36. model.MediaFocusList = _articleLogic.GetListCount(null, 120, 3);
  37. //媒体聚焦父级类型
  38. model.LeftImage = _typeLogic.GetEntity(89);
  39. model.InformationList = _articleLogic.GetList(null, 122, 4);
  40. model.DynamicList = _articleLogic.GetListCount(88, null, 3);
  41. return View(model);
  42. }
  43. /// <summary>
  44. /// 国宝动态列表页
  45. /// </summary>
  46. /// <param name="parentId"></param>
  47. /// <param name="typeId"></param>
  48. /// <returns></returns>
  49. public IActionResult Dynamic(int? typeId, int pageIndex = 1, int pageSize = 10)
  50. {
  51. var model = new ArticleListModel();
  52. int rowsCount;
  53. var typeList = _typeLogic.GetEntities(x => x.ParentId == 88, x => x.SortOrder, ListSortDirection.Descending);
  54. model.TypeList = typeList;
  55. var typeEntity = typeId.HasValue ? _typeLogic.GetEntity(x => x.Id == typeId) : typeList.FirstOrDefault();
  56. model.TypeEntity = typeEntity;
  57. model.ArticelList = _articleLogic.GetArticleList(typeEntity.Id, pageIndex, pageSize, out rowsCount); ;
  58. model.RowsCount = rowsCount;
  59. model.PageIndex = pageIndex;
  60. return View(model);
  61. }
  62. public IActionResult Industry(int typeId, int pageIndex = 1, int pageSize = 10)
  63. {
  64. int rowsCount;
  65. var model = new ArticleListModel();
  66. model.TypeEntity = _typeLogic.GetEntity(typeId);
  67. model.ArticelList = _articleLogic.GetArticleList(typeId, pageIndex, pageSize, out rowsCount);
  68. model.RowsCount = rowsCount;
  69. model.PageIndex = pageIndex;
  70. model.ParentId = _typeLogic.GetEntity(model.TypeEntity.ParentId).ParentId;
  71. return View(model);
  72. }
  73. public IActionResult Detail(int id)
  74. {
  75. var model = new ArticleDertailModel();
  76. var article = _articleLogic.GetEntity(id) ?? new Entity.ArticleEntity();
  77. model.ArticleEntity = article;
  78. model.TypeEntity = _typeLogic.GetEntity(x => x.Id == article.TypeId) ?? new TypeEntity();
  79. model.SeoTitle = article.SeoTitle;
  80. model.SeoKeywords = article.SeoKeywords;
  81. model.SeoDescription = article.SeoDescription;
  82. model.ShareDescription = article.ShareDescription;
  83. model.ShareImage = article.ShareImage;
  84. model.ShareUrl = article.ShareUrl;
  85. model.ShareTitle = article.ShareTitle;
  86. return View(model);
  87. }
  88. /// <summary>
  89. /// 客户服务
  90. /// </summary>
  91. /// <returns></returns>
  92. public IActionResult ServiceIndex()
  93. {
  94. var model = new ServiceIndexModel();
  95. model.GalleryEntity = _gallerylogic.GetEntity(x => x.TypeId == 131);
  96. model.GalleryList = _gallerylogic.GetEntities(x => x.TypeId == 149,x=>x.SortOrder, ListSortDirection.Descending);
  97. //81:尊享服务 82:服务指南 135:风险提示
  98. var articleList = _articleLogic.GetList(4, 81, 82, 135);
  99. model.ServiceGuide = articleList.Where(x => x.TypeId == 82).ToList();
  100. model.EnjoyService = articleList.Where(x => x.TypeId == 81).ToList();
  101. model.RiskHints = articleList.Where(x => x.TypeId == 135).ToList();
  102. model.FileList = _uploadingFilesLogic.GetEntities().Take(4).ToList();
  103. var res = _sysConfigLogic.GetSysConfig("Phone", "WorkDay", "WorkTime", "Address", "WordDesc");
  104. model.Phone = res.FirstOrDefault(x => x.Key == "Phone").Value;
  105. model.WorkDay = res.FirstOrDefault(x => x.Key == "WorkDay").Value;
  106. model.WorkTime = res.FirstOrDefault(x => x.Key == "WorkTime").Value;
  107. model.Address = res.FirstOrDefault(x => x.Key == "Address").Value;
  108. model.WordDesc = res.FirstOrDefault(x => x.Key == "WordDesc").Value;
  109. return View(model);
  110. }
  111. /// <summary>
  112. ///服务列表页
  113. /// </summary>
  114. /// <returns></returns>
  115. public IActionResult ServiceList(int typeId, int pageIndex = 1, int pageSize = 10)
  116. {
  117. int rowsCount;
  118. var model = new ArticleListModel();
  119. model.TypeEntity = _typeLogic.GetEntity(typeId);
  120. model.ArticelList = _articleLogic.GetArticleList(typeId, pageIndex, pageSize, out rowsCount);
  121. model.RowsCount = rowsCount;
  122. model.PageIndex = pageIndex;
  123. return View(model);
  124. }
  125. /// <summary>
  126. ///服务详情页
  127. /// </summary>
  128. /// <returns></returns>
  129. public IActionResult ServiceDetail(int id)
  130. {
  131. var model = new ArticleDertailModel();
  132. var article = _articleLogic.GetEntity(id);
  133. model.ArticleEntity = article;
  134. model.TypeEntity = _typeLogic.GetEntity(x => x.Id == article.TypeId);
  135. var list = _articleLogic.GetEntities(x => x.TypeId == article.TypeId, x => x.SortOrder, ListSortDirection.Descending);
  136. model.Count = list.Count;
  137. model.ArticleList = list;
  138. model.SeoTitle = article.SeoTitle;
  139. model.SeoKeywords = article.SeoKeywords;
  140. model.SeoDescription = article.SeoDescription;
  141. model.ShareDescription = article.ShareDescription;
  142. model.ShareImage = article.ShareImage;
  143. model.ShareUrl = article.ShareUrl;
  144. model.ShareTitle = article.ShareTitle;
  145. return View(model);
  146. }
  147. /// <summary>
  148. /// 大事记
  149. /// </summary>
  150. /// <returns></returns>
  151. public IActionResult Memorabilia()
  152. {
  153. var strList = new List<string>();
  154. var list = _articleLogic.GetEntities(x => x.TypeId == 113, x => x.PublishTime, ListSortDirection.Descending);
  155. foreach (var item in list)
  156. {
  157. var time = item.PublishTime.ToString("yyyy");
  158. if (strList.Contains(time))
  159. {
  160. continue;
  161. }
  162. strList.Add(time);
  163. }
  164. ViewBag.StrList = strList;
  165. return View(list);
  166. }
  167. }
  168. }