HeaderViewComponent.cs 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. using CZFW.Framework.Interface;
  2. using CZFW.Framework.Model;
  3. using CZFW.Framework.Model.Entity;
  4. using CZFW.Framework.Model.ViewModel;
  5. using CZKJ.GBRS2.WebMVC.Models;
  6. using Microsoft.AspNetCore.Http;
  7. using Microsoft.AspNetCore.Mvc;
  8. using Newtonsoft.Json;
  9. using System;
  10. using System.Collections.Generic;
  11. using System.Linq;
  12. using System.Threading.Tasks;
  13. namespace CZKJ.GBRS2.WebMVC.ViewComponents
  14. {
  15. public class HeaderViewComponent : ViewComponent
  16. {
  17. public IViewComponentResult Invoke()
  18. {
  19. var items = GetItems();
  20. return View(items);
  21. }
  22. private HeaderModel GetItems()
  23. {
  24. INavigation context = CZHttpContext.ServiceProvider.GetService(typeof(INavigation)) as INavigation;
  25. ISysConfig sys = CZHttpContext.ServiceProvider.GetService(typeof(ISysConfig)) as ISysConfig;
  26. var model = new HeaderModel();
  27. model.NavigationModel = context.GetNavigationTreeByMark("0$15231983314041342$");
  28. var result = sys.GetSysConfig("CLogo", "Llogo");
  29. model.BigLogo = result.FirstOrDefault(x => x.Key == "CLogo").Value;
  30. model.SmallLogo = result.FirstOrDefault(x => x.Key == "Llogo").Value;
  31. var session = HttpContext.Session.GetString("GBRS2018");
  32. if (!string.IsNullOrWhiteSpace(session))
  33. {
  34. var user= JsonConvert.DeserializeObject<CZKJ.GBRS2.Model.UserInfoModel>(session);
  35. model.Name = user.Customer_info.Name;
  36. model.NickName = user.Nickname;
  37. model.IsLogin = true;
  38. model.Head_Url = user.Head_url;
  39. }
  40. model.BeforeUrl = $"{Request.Scheme}{Request.PathBase}{Request.Path}{Request.QueryString}";
  41. return model;
  42. }
  43. }
  44. }