CCN.Resource.Areas.System.Controllers.SystemController.SysRoleList C# (CSharp) Method

SysRoleList() public method

角色列表
public SysRoleList ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult SysRoleList()
        {
            if (ADMIN.ToString().ToLower() == UserInfo.innerid.ToLower())
            {
                ViewBag.isadmin = 1;
            }
            ViewBag.adminid = ADMIN;
            return View();
        }