123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- using CZFW.Framework.Interface;
- using CZFW.Framework.Model.Entity;
- using CZKJ.GBRS2.Interface;
- using CZKJ.GBRS2.WebMVC.Models;
- using Microsoft.AspNetCore.Mvc;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- namespace CZKJ.GBRS2.WebMVC.Controllers
- {
- public class ArticleController : Controller
- {
- IArticle _articleLogic;
- IGallery _gallerylogic;
- IType _typeLogic;
- IFiles _uploadingFilesLogic;
- ISysConfig _sysConfigLogic;
- public ArticleController(IGallery gallerylogic, IArticle articleLogic, IType typeLogic, IFiles uploadingFilesLogic, ISysConfig sysConfigLogic)
- {
- _articleLogic = articleLogic;
- _gallerylogic = gallerylogic;
- _typeLogic = typeLogic;
- _uploadingFilesLogic = uploadingFilesLogic;
- _sysConfigLogic = sysConfigLogic;
- }
- /// <summary>
- /// 新闻中心
- /// </summary>
- /// <returns></returns>
- public IActionResult Index()
- {
- var model = new ArticleIndexModel();
- var galleryList = _gallerylogic.GetEntities(x => x.TypeId == 124 || x.TypeId == 125, x => x.SortOrder, ListSortDirection.Descending);
- model.GalleryEntity = galleryList.FirstOrDefault(x => x.TypeId == 124) ?? new GalleryEntity();
- model.CenterGallery = galleryList.FirstOrDefault(x => x.TypeId == 125) ?? new GalleryEntity();
- model.MediaFocusList = _articleLogic.GetListCount(null, 120, 3);
- //媒体聚焦父级类型
- model.LeftImage = _typeLogic.GetEntity(89);
- model.InformationList = _articleLogic.GetList(null, 122, 4);
- model.DynamicList = _articleLogic.GetListCount(88, null, 3);
- return View(model);
- }
- /// <summary>
- /// 国宝动态列表页
- /// </summary>
- /// <param name="parentId"></param>
- /// <param name="typeId"></param>
- /// <returns></returns>
- public IActionResult Dynamic(int? typeId, int pageIndex = 1, int pageSize = 10)
- {
- var model = new ArticleListModel();
- int rowsCount;
- var typeList = _typeLogic.GetEntities(x => x.ParentId == 88, x => x.SortOrder, ListSortDirection.Descending);
- model.TypeList = typeList;
- var typeEntity = typeId.HasValue ? _typeLogic.GetEntity(x => x.Id == typeId) : typeList.FirstOrDefault();
- model.TypeEntity = typeEntity;
- model.ArticelList = _articleLogic.GetArticleList(typeEntity.Id, pageIndex, pageSize, out rowsCount); ;
- model.RowsCount = rowsCount;
- model.PageIndex = pageIndex;
- return View(model);
- }
- public IActionResult Industry(int typeId, int pageIndex = 1, int pageSize = 10)
- {
- int rowsCount;
- var model = new ArticleListModel();
- model.TypeEntity = _typeLogic.GetEntity(typeId);
- model.ArticelList = _articleLogic.GetArticleList(typeId, pageIndex, pageSize, out rowsCount);
- model.RowsCount = rowsCount;
- model.PageIndex = pageIndex;
- model.ParentId = _typeLogic.GetEntity(model.TypeEntity.ParentId).ParentId;
- return View(model);
- }
- public IActionResult Detail(int id)
- {
- var model = new ArticleDertailModel();
- var article = _articleLogic.GetEntity(id) ?? new Entity.ArticleEntity();
- model.ArticleEntity = article;
- model.TypeEntity = _typeLogic.GetEntity(x => x.Id == article.TypeId) ?? new TypeEntity();
- model.SeoTitle = article.SeoTitle;
- model.SeoKeywords = article.SeoKeywords;
- model.SeoDescription = article.SeoDescription;
- model.ShareDescription = article.ShareDescription;
- model.ShareImage = article.ShareImage;
- model.ShareUrl = article.ShareUrl;
- model.ShareTitle = article.ShareTitle;
- return View(model);
- }
- /// <summary>
- /// 客户服务
- /// </summary>
- /// <returns></returns>
- public IActionResult ServiceIndex()
- {
- var model = new ServiceIndexModel();
- model.GalleryEntity = _gallerylogic.GetEntity(x => x.TypeId == 131);
- model.GalleryList = _gallerylogic.GetEntities(x => x.TypeId == 149,x=>x.SortOrder, ListSortDirection.Descending);
- //81:尊享服务 82:服务指南 135:风险提示
- var articleList = _articleLogic.GetList(4, 81, 82, 135);
- model.ServiceGuide = articleList.Where(x => x.TypeId == 82).ToList();
- model.EnjoyService = articleList.Where(x => x.TypeId == 81).ToList();
- model.RiskHints = articleList.Where(x => x.TypeId == 135).ToList();
- model.FileList = _uploadingFilesLogic.GetEntities().Take(4).ToList();
- var res = _sysConfigLogic.GetSysConfig("Phone", "WorkDay", "WorkTime", "Address", "WordDesc");
- model.Phone = res.FirstOrDefault(x => x.Key == "Phone").Value;
- model.WorkDay = res.FirstOrDefault(x => x.Key == "WorkDay").Value;
- model.WorkTime = res.FirstOrDefault(x => x.Key == "WorkTime").Value;
- model.Address = res.FirstOrDefault(x => x.Key == "Address").Value;
- model.WordDesc = res.FirstOrDefault(x => x.Key == "WordDesc").Value;
- return View(model);
- }
- /// <summary>
- ///服务列表页
- /// </summary>
- /// <returns></returns>
- public IActionResult ServiceList(int typeId, int pageIndex = 1, int pageSize = 10)
- {
- int rowsCount;
- var model = new ArticleListModel();
- model.TypeEntity = _typeLogic.GetEntity(typeId);
- model.ArticelList = _articleLogic.GetArticleList(typeId, pageIndex, pageSize, out rowsCount);
- model.RowsCount = rowsCount;
- model.PageIndex = pageIndex;
- return View(model);
- }
- /// <summary>
- ///服务详情页
- /// </summary>
- /// <returns></returns>
- public IActionResult ServiceDetail(int id)
- {
-
- var model = new ArticleDertailModel();
- var article = _articleLogic.GetEntity(id);
- model.ArticleEntity = article;
- model.TypeEntity = _typeLogic.GetEntity(x => x.Id == article.TypeId);
- var list = _articleLogic.GetEntities(x => x.TypeId == article.TypeId, x => x.SortOrder, ListSortDirection.Descending);
- model.Count = list.Count;
- model.ArticleList = list;
- model.SeoTitle = article.SeoTitle;
- model.SeoKeywords = article.SeoKeywords;
- model.SeoDescription = article.SeoDescription;
- model.ShareDescription = article.ShareDescription;
- model.ShareImage = article.ShareImage;
- model.ShareUrl = article.ShareUrl;
- model.ShareTitle = article.ShareTitle;
- return View(model);
- }
- /// <summary>
- /// 大事记
- /// </summary>
- /// <returns></returns>
- public IActionResult Memorabilia()
- {
- var strList = new List<string>();
- var list = _articleLogic.GetEntities(x => x.TypeId == 113, x => x.PublishTime, ListSortDirection.Descending);
- foreach (var item in list)
- {
- var time = item.PublishTime.ToString("yyyy");
- if (strList.Contains(time))
- {
- continue;
- }
- strList.Add(time);
- }
- ViewBag.StrList = strList;
-
- return View(list);
- }
- }
- }
|