|
|
@@ -235,24 +235,24 @@ namespace Learun.Application.Web.Controllers |
|
|
|
return View(); |
|
|
|
} |
|
|
|
|
|
|
|
public ActionResult NoLogin() |
|
|
|
{ |
|
|
|
var flowType = dataItemIBLL.GetDetailList("FlowSort", ""); |
|
|
|
var flowList = wfSchemeIBLL.GetWfSchemeStart().ToList(); |
|
|
|
var allCount = 0; |
|
|
|
foreach (var flow in flowType) |
|
|
|
{ |
|
|
|
var count = flowList.Count(a => a.F_Category == flow.F_ItemName); |
|
|
|
flow.FlowCount = count; |
|
|
|
allCount += count; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
ViewBag.AllCount = allCount; |
|
|
|
ViewBag.FlowType = flowType; |
|
|
|
ViewBag.FlowList = JsonConvert.SerializeObject(flowList); |
|
|
|
return View(); |
|
|
|
} |
|
|
|
//public ActionResult NoLogin() |
|
|
|
//{ |
|
|
|
// var flowType = dataItemIBLL.GetDetailList("FlowSort", ""); |
|
|
|
// var flowList = wfSchemeIBLL.GetWfSchemeStart().ToList(); |
|
|
|
// var allCount = 0; |
|
|
|
// foreach (var flow in flowType) |
|
|
|
// { |
|
|
|
// var count = flowList.Count(a => a.F_Category == flow.F_ItemName); |
|
|
|
// flow.FlowCount = count; |
|
|
|
// allCount += count; |
|
|
|
|
|
|
|
// } |
|
|
|
|
|
|
|
// ViewBag.AllCount = allCount; |
|
|
|
// ViewBag.FlowType = flowType; |
|
|
|
// ViewBag.FlowList = JsonConvert.SerializeObject(flowList); |
|
|
|
// return View(); |
|
|
|
//} |
|
|
|
|
|
|
|
private UserService userService = new UserService(); |
|
|
|
|
|
|
@@ -863,7 +863,7 @@ namespace Learun.Application.Web.Controllers |
|
|
|
/// 网上办事大厅拖拽版-未登录页面 |
|
|
|
/// </summary> |
|
|
|
/// <returns></returns> |
|
|
|
public ActionResult DragNoLogin() |
|
|
|
public ActionResult NoLogin() |
|
|
|
{ |
|
|
|
//获取错误次数 |
|
|
|
ViewBag.errornum = OperatorHelper.Instance.GetCurrentErrorNum(); |
|
|
@@ -884,7 +884,7 @@ namespace Learun.Application.Web.Controllers |
|
|
|
ViewBag.WeixinLoginSwitch = result4; |
|
|
|
|
|
|
|
|
|
|
|
return View(); |
|
|
|
return View("DragNoLogin"); |
|
|
|
} |
|
|
|
|
|
|
|
/// <summary> |
|
|
|