HomeController.cs 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. using Microsoft.AspNetCore.Mvc;
  2. using CZFW.Framework.Interface;
  3. using CZKJ.GBRS2.Interface;
  4. using CZKJ.GBRS2.WebMVC.Models;
  5. using System.Linq;
  6. using CZFW.Framework.Model.Entity;
  7. using CZFW.Framework.Model.Enum;
  8. using System.ComponentModel;
  9. using System.Collections.Generic;
  10. namespace CZKJ.GBRS2.WebMVC.Controllers
  11. {
  12. public class HomeController : Controller
  13. {
  14. IGallery _galleryLogic;
  15. IType _typeLogic;
  16. IArticle _articleLogic;
  17. IFiles _fileLogic;
  18. INavigation _navigationLogic;
  19. IProduct _productLogic;
  20. ISysConfig _sysConfigLogic;
  21. public HomeController(IGallery galleryLogic, IType typeLogic, IArticle articleLogic, IFiles fileLogic, INavigation navigationLogic, IProduct productLogic,ISysConfig sysConfigLogic)
  22. {
  23. _galleryLogic = galleryLogic;
  24. _typeLogic = typeLogic;
  25. _articleLogic = articleLogic;
  26. _fileLogic = fileLogic;
  27. _navigationLogic = navigationLogic;
  28. _productLogic = productLogic;
  29. _sysConfigLogic = sysConfigLogic;
  30. }
  31. public IActionResult Index()
  32. {
  33. var model = new IndexModel();
  34. var idList = new List<int> { 107, 108, 109, 148, 128,150 };
  35. var galleryList = _galleryLogic.GetGalleryList(idList);
  36. model.GalleryList = galleryList.Where(x => x.TypeId == 107).ToList();
  37. model.ProductList = galleryList.Where(x => x.TypeId == 128).ToList();
  38. model.FastIConList = galleryList.Where(x => x.TypeId == 109).ToList();
  39. model.BackGalleryList = galleryList.Where(x => x.TypeId == 150).ToList();
  40. model.LeftServicegallery = galleryList.FirstOrDefault(x => x.TypeId == 108) ?? new GalleryEntity();
  41. var typeList = _typeLogic.GetEntities(x => x.ParentId == (int)DefaultDataEnum.NewsCenterParentId, x => x.SortOrder, ListSortDirection.Descending).Take(4).ToList();
  42. model.TypeList = typeList;
  43. var typeIdList = typeList.Select(x => x.Id).ToList();
  44. model.ChildrenList = _typeLogic.GetEntities(x => typeIdList.Contains(x.ParentId));
  45. model.ServiceList = galleryList.Where(x => x.TypeId == 148).ToList();
  46. var configList = _sysConfigLogic.GetSysConfig("Twitter", "Facebook", "Weibo", "WeChatCode");
  47. model.Wechat = configList.First(x => x.Key == "WeChatCode").Value;
  48. model.Weibo = configList.First(x => x.Key == "Weibo").Value;
  49. model.Facebook = configList.First(x => x.Key == "Facebook").Value;
  50. model.Twitter = configList.First(x => x.Key == "Twitter").Value;
  51. return View(model);
  52. }
  53. public IActionResult AboutUs()
  54. {
  55. var model = new AboutUsModel();
  56. //依次为:顶部广告位 企业愿景广告位(大事记 法律声明 分支机构) 分支机构 (领导讲话 党建工作)股东背景广告位集合
  57. IList<int> idList = new List<int> { 136, 137, 138, 139, 140, 141 };
  58. var galleryList = _galleryLogic.GetEntities(x => idList.Contains(x.TypeId), x => x.SortOrder, ListSortDirection.Descending);
  59. model.Summary = _articleLogic.GetEntity(52);
  60. model.TopGallery = galleryList.FirstOrDefault(x => x.TypeId == 136);
  61. model.EnterpriseVision = galleryList.FirstOrDefault(x => x.TypeId == 137);
  62. model.CenterGalleryList = galleryList.Where(x => x.TypeId == 138).ToList();
  63. model.Department = galleryList.FirstOrDefault(x => x.TypeId == 139);
  64. model.LastGalleryList = galleryList.Where(x => x.TypeId == 140).ToList();
  65. model.BackgroundList = galleryList.Where(x => x.TypeId == 141).ToList();
  66. return View(model);
  67. }
  68. /// <summary>
  69. /// 资料下载
  70. /// </summary>
  71. /// <param name="pageIndex"></param>
  72. /// <param name="pageSize"></param>
  73. /// <returns></returns>
  74. public IActionResult Download(int pageIndex = 1, int pageSize = 10)
  75. {
  76. int rowsCount;
  77. var list = _fileLogic.GetEntities(out rowsCount, null, pageIndex, pageSize, x=>x.SortOrder, ListSortDirection.Descending);
  78. ViewBag.RowsCount = rowsCount;
  79. ViewBag.PageIndex = pageIndex;
  80. return View(list);
  81. }
  82. public IActionResult Map()
  83. {
  84. return View(_navigationLogic.GetNavigationTreeByMark("0$15231983314041342$"));
  85. }
  86. public IActionResult Search(string keywords, int aPageIndex = 1, int aPageSize = 10, int pPageIndex = 1, int pPageSize = 10)
  87. {
  88. var model = new HomeSearchModel();
  89. int aRowsCount;
  90. int pRowsCount;
  91. model.ArticleList = _articleLogic.GetSearchResult(keywords, aPageIndex, aPageSize, out aRowsCount);
  92. model.ProductList = _productLogic.GetSearchResult(keywords, pPageIndex, pPageSize, out pRowsCount);
  93. model.aPageIndex = aPageIndex;
  94. model.aRowsCount = aRowsCount;
  95. model.pPageIndex = pPageIndex;
  96. model.pRowsCount = pRowsCount;
  97. model.Keywords = keywords;
  98. return View(model);
  99. }
  100. }
  101. }