@using Learun.Application.Base.SystemModule @using Learun.Application.WorkFlow @{ ViewBag.Title = "办事大厅"; Layout = "~/Views/SSOSystem/_LayoutSSO.cshtml"; }
@{ List flowtypelist = ViewBag.FlowType; List flowlist = ViewBag.FlowList; } @for (int i = 0; i < flowtypelist.Count; i++) {
@flowtypelist[i].F_ItemName @flowtypelist[i].F_Description 更多
@{ var flowitem = flowlist.Where(m => m.F_Category == flowtypelist[i].F_ItemValue).ToList(); } @for (int j = 0; j < flowitem.Count; j++) { int m = 5; if (j<5) { m = m - j; } else { m = 0; } }
}