DataGrid多表头、行分组、合计行、小计行、编辑表格,实例

This commit is contained in:
thinkgem
2018-03-25 22:04:18 +08:00
parent 21207f5d80
commit 54a976d09e
5 changed files with 528 additions and 1 deletions

View File

@@ -5,6 +5,7 @@ package com.jeesite.modules.state.web;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
/**
@@ -18,7 +19,8 @@ public class ServerStateController {
@RequiresPermissions("sys:state:server")
@RequestMapping(value="")
public String index(){
public String index(Model model){
model.addAttribute("message", "正在研发中,敬请期待!");
return "modules/state/serverIndex";
}