| | |
| | | private readonly ILogger<ZhuanjiahuidaController> _logger; |
| | | private readonly ILZhuanjiahuidumService _lZhuanjiahuidumService; |
| | | private readonly ILiaotianService _liaotianService; |
| | | private readonly IConfiguration _configuration; |
| | | //private readonly IConfiguration _configuration; |
| | | private readonly IPltPageService _pltPageService; |
| | | |
| | | |
| | | |
| | | |
| | | public ZhuanjiahuidaController(ILogger<ZhuanjiahuidaController> logger, ILZhuanjiahuidumService lZhuanjiahuidumService, ILiaotianService liaotianService) |
| | | public ZhuanjiahuidaController(ILogger<ZhuanjiahuidaController> logger, ILZhuanjiahuidumService lZhuanjiahuidumService, ILiaotianService liaotianService |
| | | , IPltPageService pltPageService) |
| | | { |
| | | _logger = logger; |
| | | _lZhuanjiahuidumService = lZhuanjiahuidumService; |
| | | _liaotianService = liaotianService; |
| | | _pltPageService = pltPageService; |
| | | } |
| | | [CheckLogin] |
| | | public IActionResult Index() |
| | |
| | | //actionlist.Add(actionEntity1); |
| | | ViewData["ActionInfo"] = actionlist; |
| | | |
| | | var pageEntities = _pltPageService.GetUserPage(curentuser.Id, "/Zhuanjiahuida/Index"); |
| | | var pageEntities2 = pageEntities.Where(x => x.PageMethod == "02").ToList(); |
| | | ViewData["ActionInfo2"] = pageEntities2; |
| | | |
| | | ViewBag.shifou = _liaotianService.GetSYScode("system", "shifou").Select(x => new { code = x.CodeSn, label = x.Comments }).ToList(); |
| | | return View(); |
| | | } |