From bb7afddd41ae1017d4d7c1fc3164cd396e8f08f4 Mon Sep 17 00:00:00 2001 From: tamguo Date: Fri, 20 Jul 2018 16:34:46 +0800 Subject: [PATCH] =?UTF-8?q?=E9=87=8D=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/sys/web/UserController.java | 24 ++ .../resources/templates/include/leftMenu.html | 2 +- .../templates/modules/sys/user/index.html | 109 +++++ .../templates/modules/sys/user/list.html | 392 ++++++++++++++++++ 4 files changed, 526 insertions(+), 1 deletion(-) create mode 100644 tamguo-oms/src/main/java/com/tamguo/modules/sys/web/UserController.java create mode 100644 tamguo-oms/src/main/resources/templates/modules/sys/user/index.html create mode 100644 tamguo-oms/src/main/resources/templates/modules/sys/user/list.html diff --git a/tamguo-oms/src/main/java/com/tamguo/modules/sys/web/UserController.java b/tamguo-oms/src/main/java/com/tamguo/modules/sys/web/UserController.java new file mode 100644 index 0000000..b8e694e --- /dev/null +++ b/tamguo-oms/src/main/java/com/tamguo/modules/sys/web/UserController.java @@ -0,0 +1,24 @@ +package com.tamguo.modules.sys.web; + +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.servlet.ModelAndView; + +@Controller +@RequestMapping(path="sys/user") +public class UserController { + + private final String USER_INDEX_PAGE = "modules/sys/user/index"; + private final String USER_LIST_PAGE = "modules/sys/user/list"; + + @RequestMapping(path="index") + public String index(ModelAndView model) { + return USER_INDEX_PAGE; + } + + @RequestMapping(path="list") + public String list(ModelAndView model) { + return USER_LIST_PAGE; + } + +} diff --git a/tamguo-oms/src/main/resources/templates/include/leftMenu.html b/tamguo-oms/src/main/resources/templates/include/leftMenu.html index 65bb574..69cf6fc 100644 --- a/tamguo-oms/src/main/resources/templates/include/leftMenu.html +++ b/tamguo-oms/src/main/resources/templates/include/leftMenu.html @@ -19,7 +19,7 @@
  • 组织管理 diff --git a/tamguo-oms/src/main/resources/templates/modules/sys/user/index.html b/tamguo-oms/src/main/resources/templates/modules/sys/user/index.html new file mode 100644 index 0000000..a7b2810 --- /dev/null +++ b/tamguo-oms/src/main/resources/templates/modules/sys/user/index.html @@ -0,0 +1,109 @@ + + +用户管理 - JeeSite Demo + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + 组织机构 +
    +
    + + + + +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tamguo-oms/src/main/resources/templates/modules/sys/user/list.html b/tamguo-oms/src/main/resources/templates/modules/sys/user/list.html new file mode 100644 index 0000000..9d2d093 --- /dev/null +++ b/tamguo-oms/src/main/resources/templates/modules/sys/user/list.html @@ -0,0 +1,392 @@ + + +用户管理 - JeeSite Demo + + + + + + + + + + + + + +
    +
    +
    +
    + 用户管理 +
    + +
    +
    +
    +
    + +
    + +
    +
    +
    + +
    + +
    +
    +
    + +
    + +
    +
    +
    + +
    + +
    +
    +
    + +
    + +
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    + + + +
    +
    +
    +
    + +
    +
    + + + +
    +
    +
    +
    + +
    + +
    +
    +
    + +
    + +
    +
    +
    + + +
    +
    +
    +
    +
    +
    +
    +
    + + + + + + + + + + + + + + + \ No newline at end of file