list.html.vm 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <!DOCTYPE HTML>
  2. <html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
  3. <meta charset="utf-8">
  4. <head th:include="include :: header"></head>
  5. <body class="gray-bg">
  6. <div class="container-div">
  7. <div class="btn-group-sm hidden-xs" id="toolbar" role="group">
  8. <a class="btn btn-success" onclick="$.operate.add()" shiro:hasPermission="${moduleName}:${classname}:add">
  9. <i class="fa fa-plus"></i> 添加
  10. </a>
  11. <a class="btn btn-primary btn-edit disabled" onclick="$.operate.edit()" shiro:hasPermission="${moduleName}:${classname}:edit">
  12. <i class="fa fa-edit"></i> 修改
  13. </a>
  14. <a class="btn btn-danger btn-del btn-del disabled" onclick="$.operate.removeAll()" shiro:hasPermission="${moduleName}:${classname}:remove">
  15. <i class="fa fa-remove"></i> 删除
  16. </a>
  17. </div>
  18. <div class="col-sm-12 select-table table-striped">
  19. <table id="bootstrap-table" data-mobile-responsive="true"></table>
  20. </div>
  21. </div>
  22. <div th:include="include :: footer"></div>
  23. <script th:inline="javascript">
  24. var editFlag = [[${@permission.hasPermi('${moduleName}:${classname}:edit')}]];
  25. var removeFlag = [[${@permission.hasPermi('${moduleName}:${classname}:remove')}]];
  26. var prefix = ctx + "${moduleName}/${classname}";
  27. $(function() {
  28. var options = {
  29. url: prefix + "/list",
  30. createUrl: prefix + "/add",
  31. updateUrl: prefix + "/edit/{id}",
  32. removeUrl: prefix + "/remove",
  33. modalName: "${tableComment}",
  34. columns: [{
  35. checkbox: true
  36. },
  37. #foreach($column in $columns)
  38. {
  39. field : '${column.attrname}',
  40. title : '${column.columnComment}'
  41. },
  42. #end
  43. {
  44. title: '操作',
  45. align: 'center',
  46. formatter: function(value, row, index) {
  47. var actions = [];
  48. actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="#" onclick="$.operate.edit(\'' + row.${primaryKey.attrname} + '\')"><i class="fa fa-edit"></i>编辑</a> ');
  49. actions.push('<a class="btn btn-danger btn-xs ' + removeFlag + '" href="#" onclick="$.operate.remove(\'' + row.${primaryKey.attrname} + '\')"><i class="fa fa-remove"></i>删除</a>');
  50. return actions.join('');
  51. }
  52. }]
  53. };
  54. $.table.init(options);
  55. });
  56. </script>
  57. </body>
  58. </html>