From a7ae63ad871b986eb1bede54219638edd4e29b63 Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期二, 21 十一月 2023 10:45:24 +0800
Subject: [PATCH] 提交
---
zhengcaioa/zhengcaioa/Controllers/Customer/CooperatecustomCustomerController.cs | 14 +++++++++++---
1 files changed, 11 insertions(+), 3 deletions(-)
diff --git a/zhengcaioa/zhengcaioa/Controllers/Customer/CooperatecustomCustomerController.cs b/zhengcaioa/zhengcaioa/Controllers/Customer/CooperatecustomCustomerController.cs
index db6457c..324d24b 100644
--- a/zhengcaioa/zhengcaioa/Controllers/Customer/CooperatecustomCustomerController.cs
+++ b/zhengcaioa/zhengcaioa/Controllers/Customer/CooperatecustomCustomerController.cs
@@ -16,6 +16,7 @@
using zhengcaioa.Models;
using zhengcaioa.IService;
using System.Transactions;
+using System.IdentityModel.Tokens.Jwt;
namespace zhengcaioa.Controllers.Customer
{
@@ -31,11 +32,13 @@
private readonly ISysAttachmentService _sysAttachmentService;
private readonly IPltPageService _pltPageService;
private readonly ICooperVisitService _cooperVisitService;
+ private readonly IIntentionCustomerService _intentionCustomerService;
public CooperatecustomCustomerController(ILogger<CooperatecustomCustomerController> logger, IProjectService projectService, ILiaotianService liaotianService, ICooperatecustomCustomerService cooperatecustomCustomerService, IUserService userService, IHrDeptService hrDeptService
, ISysAttachmentService sysAttachmentService
, IPltPageService pltPageService
- , ICooperVisitService cooperVisitService)
+ , ICooperVisitService cooperVisitService
+ , IIntentionCustomerService intentionCustomerService)
{
_logger = logger;
_projectService = projectService;
@@ -46,6 +49,7 @@
_sysAttachmentService = sysAttachmentService;
_pltPageService = pltPageService;
_cooperVisitService = cooperVisitService;
+ _intentionCustomerService = intentionCustomerService;
}
public IActionResult Index()
@@ -162,8 +166,8 @@
ViewBag.ShengDropDown = areaDTOs.Select(x => new { code = x.CodeId, label = x.Name }).ToList();
- ViewBag.Baomingtimebegin = DateTime.Now.AddMonths(-6).ToString("yyyy-MM-dd");
- ViewBag.Baomingtimeend = DateTime.Now.ToString("yyyy-MM-dd");
+ ViewBag.Baomingtimebegin = "";// DateTime.Now.AddMonths(-6).ToString("yyyy-MM-dd");
+ ViewBag.Baomingtimeend = "";// DateTime.Now.ToString("yyyy-MM-dd");
return View();
@@ -577,5 +581,9 @@
return new JsonResult(resultEntity);
}
+
+
+
+
}
}
--
Gitblit v1.9.1