新增示例(表格列拖拽)

This commit is contained in:
RuoYi
2021-04-27 17:12:31 +08:00
parent 0f17e5c433
commit 0a6e493f95
9 changed files with 181 additions and 10 deletions

View File

@@ -259,12 +259,21 @@ public class DemoTableController extends BaseController
}
/**
* 表格拖拽操作
* 表格拖拽操作
*/
@GetMapping("/reorder")
public String reorder()
@GetMapping("/reorderRows")
public String reorderRows()
{
return prefix + "/reorder";
return prefix + "/reorderRows";
}
/**
* 表格列拖拽操作
*/
@GetMapping("/reorderColumns")
public String reorderColumns()
{
return prefix + "/reorderColumns";
}
/**