ProductController.cs 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. using CZFW.Framework.Interface;
  2. using CZKJ.GBRS2.Enum;
  3. using CZKJ.GBRS2.Interface;
  4. using CZKJ.GBRS2.WebMVC.Models;
  5. using Microsoft.AspNetCore.Mvc;
  6. using System.Collections.Generic;
  7. using System.Linq;
  8. namespace CZKJ.GBRS2.WebMVC.Controllers
  9. {
  10. /// <summary>
  11. /// 产品展示
  12. /// </summary>
  13. public class ProductController : Controller
  14. {
  15. IProduct _productLogic;
  16. IType _typeLogic;
  17. IGallery _galleryLogic;
  18. public ProductController(IProduct productLogic, IType typeLogic, IGallery galleryLogic)
  19. {
  20. _productLogic = productLogic;
  21. _typeLogic = typeLogic;
  22. _galleryLogic = galleryLogic;
  23. }
  24. public IActionResult Index()
  25. {
  26. //100:个险 95: 团险
  27. var typeList = _typeLogic.GetEntities(x => x.ParentId == 100 || x.ParentId == 95);
  28. var productList = _productLogic.GetCountList(typeList.Select(x => x.Id).ToList(), 2);
  29. var idList = new List<int> { 145, 146, 147 };
  30. var galleryList = _galleryLogic.GetGalleryList(idList);
  31. var model = new ProductIndexModel();
  32. model.GalleryEntity = galleryList.First(x => x.TypeId == 145);
  33. model.TypeGalleryList = galleryList.Where(x => x.TypeId == 146).ToList();
  34. model.CenterGallery = galleryList.First(x => x.TypeId == 147);
  35. model.PersonTypeList = typeList.Where(x => x.ParentId == 100).ToList();
  36. model.GroupTypeList = typeList.Where(x => x.ParentId == 95).ToList();
  37. var personIdList = model.PersonTypeList.Select(x => x.Id).ToList();
  38. var groupIdList = model.GroupTypeList.Select(x => x.Id).ToList();
  39. model.PersonList = productList.Where(x => personIdList.Contains(x.TypeId)).ToList();
  40. model.GroupList = productList.Where(x => groupIdList.Contains(x.TypeId)).ToList();
  41. return View(model);
  42. }
  43. public IActionResult List(int? typeId, int parentId = 100, int pageIndex = 1, int pageSize = 10)
  44. {
  45. int rowsCount;
  46. var model = new ProductListModel();
  47. model.TypeList = _typeLogic.GetEntities(x => x.ParentId == parentId);
  48. typeId = typeId.HasValue ? typeId : model.TypeList.FirstOrDefault().Id;
  49. model.ParentTypeName = _typeLogic.GetEntity(x => x.Id == parentId).Name;
  50. model.ProductList = _productLogic.GetEntities(out rowsCount, x => x.TypeId == typeId && x.Status == (int)ProductStatusEnum.上线, pageIndex, pageSize, x => x.SortOrder, System.ComponentModel.ListSortDirection.Descending);
  51. model.RowsCount = rowsCount;
  52. model.PageIndex = pageIndex;
  53. model.TypeId = typeId.Value;
  54. model.ParentId = parentId;
  55. return View(model);
  56. }
  57. public IActionResult Detail(int id)
  58. {
  59. return View(_productLogic.GetEntity(id));
  60. }
  61. public IActionResult Preview(int id)
  62. {
  63. return View(_productLogic.GetEntity(id));
  64. }
  65. }
  66. }