From ecaa972b77cd4b8781aa27f086c9d2cf2fd1043d Mon Sep 17 00:00:00 2001 From: Argo-Lenovo Date: Wed, 2 Nov 2016 00:59:58 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E4=B8=AA=E6=80=A7=E5=8C=96?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=E7=BB=B4=E6=8A=A4=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Bootstrap.Admin/Bootstrap.Admin.csproj | 1 + .../Controllers/AdminController.cs | 12 ++++++ Bootstrap.Admin/Views/Admin/Profiles.cshtml | 38 +++++++++++++++++++ 3 files changed, 51 insertions(+) create mode 100644 Bootstrap.Admin/Views/Admin/Profiles.cshtml diff --git a/Bootstrap.Admin/Bootstrap.Admin.csproj b/Bootstrap.Admin/Bootstrap.Admin.csproj index 2a76ab6c..5957b54b 100644 --- a/Bootstrap.Admin/Bootstrap.Admin.csproj +++ b/Bootstrap.Admin/Bootstrap.Admin.csproj @@ -234,6 +234,7 @@ + Web.config diff --git a/Bootstrap.Admin/Controllers/AdminController.cs b/Bootstrap.Admin/Controllers/AdminController.cs index 05f917e1..02417673 100644 --- a/Bootstrap.Admin/Controllers/AdminController.cs +++ b/Bootstrap.Admin/Controllers/AdminController.cs @@ -81,5 +81,17 @@ namespace Bootstrap.Admin.Controllers { return View(); } + /// + /// + /// + /// + public ActionResult Profiles() + { + var v = new NavigatorBarModel(); + v.ShowMenu = "hide"; + v.Menus[5].Active = "active"; + v.HomeUrl = "~/Admin"; + return View(v); + } } } diff --git a/Bootstrap.Admin/Views/Admin/Profiles.cshtml b/Bootstrap.Admin/Views/Admin/Profiles.cshtml new file mode 100644 index 00000000..a4e3b71f --- /dev/null +++ b/Bootstrap.Admin/Views/Admin/Profiles.cshtml @@ -0,0 +1,38 @@ +@model NavigatorBarModel +@{ + ViewBag.Title = "个性化设置"; + Layout = "~/Views/Shared/_Admin.cshtml"; +} +@section Javascript { + +} +@section header { + @Html.Partial("Header", Model) +} +@section navigator { + @Html.Partial("Navigator", Model) +} +
+
系统名称设置
+
+
+ + + + +
+
+
+
+
页脚设置
+
+
+ + + + +
+
+
+ +