FooterViewComponent.cs 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. using CZFW.Framework.Interface;
  2. using CZFW.Framework.Model;
  3. using CZKJ.GBRS2.WebMVC.Models;
  4. using Microsoft.AspNetCore.Mvc;
  5. using System.Linq;
  6. namespace CZKJ.GBRS2.WebMVC.ViewComponents
  7. {
  8. public class FooterViewComponent : ViewComponent
  9. {
  10. public IViewComponentResult Invoke()
  11. {
  12. var item = GetItems();
  13. return View(item);
  14. }
  15. private FooterModel GetItems()
  16. {
  17. ISysConfig sys = CZHttpContext.ServiceProvider.GetService(typeof(ISysConfig)) as ISysConfig;
  18. INavigation na = CZHttpContext.ServiceProvider.GetService(typeof(INavigation)) as INavigation;
  19. ILink link = CZHttpContext.ServiceProvider.GetService(typeof(ILink)) as ILink;
  20. var result = sys.GetSysConfig("Phone", "ZipCode", "Address", "WeChatCode", "MicroBlog", "Record");
  21. var model = new FooterModel();
  22. model.Phone = result.FirstOrDefault(x => x.Key == "Phone").Value;
  23. model.ZipCode = result.FirstOrDefault(x => x.Key == "ZipCode").Value;
  24. model.Address = result.FirstOrDefault(x => x.Key == "Address").Value;
  25. model.WeChatCode = result.FirstOrDefault(x => x.Key == "WeChatCode").Value;
  26. model.MicroBlog = result.FirstOrDefault(x => x.Key == "MicroBlog").Value;
  27. model.NavigationModel = na.GetNavigationTreeByMark("0$15235665423212817$");
  28. model.NavigationHModel = na.GetNavigationTreeByMark("0$15235668675090910$");
  29. model.Record = result.FirstOrDefault(x => x.Key == "Record").Value;
  30. model.LinkList = link.GetEntities();
  31. return model;
  32. }
  33. }
  34. }