gen.html 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. <!DOCTYPE html>
  2. <html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
  3. <head>
  4. <th:block th:include="include :: header('代码生成列表')" />
  5. <th:block th:include="include :: select2-css" />
  6. </head>
  7. <body class="gray-bg">
  8. <div class="container-div">
  9. <div class="row">
  10. <div class="col-sm-12 search-collapse">
  11. <form id="gen-form">
  12. <div class="select-list">
  13. <ul>
  14. <li>
  15. 表名称:<select name="tableName" class="form-control">
  16. <option value="">所有</option>
  17. <option th:each="table : ${genTables}" th:text="${table.tableName}" th:value="${table.tableName}"></option>
  18. </select>
  19. </li>
  20. <li>
  21. 表描述:<select name="tableComment" class="form-control">
  22. <option value="">所有</option>
  23. <option th:each="table : ${genTables}" th:text="${table.tableComment}" th:value="${table.tableComment}"></option>
  24. </select>
  25. </li>
  26. <li class="select-time">
  27. <label>表时间: </label>
  28. <input type="text" class="time-input" id="startTime" placeholder="开始时间" name="params[beginTime]"/>
  29. <span>-</span>
  30. <input type="text" class="time-input" id="endTime" placeholder="结束时间" name="params[endTime]"/>
  31. </li>
  32. <li>
  33. <a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i>&nbsp;搜索</a>
  34. <a class="btn btn-warning btn-rounded btn-sm" onclick="resetPre()"><i class="fa fa-refresh"></i>&nbsp;重置</a>
  35. </li>
  36. </ul>
  37. </div>
  38. </form>
  39. </div>
  40. <div class="btn-group-sm" id="toolbar" role="group">
  41. <a class="btn btn-success multiple disabled" onclick="javascript:batchGenCode()" shiro:hasPermission="tool:gen:code">
  42. <i class="fa fa-download"></i> 生成
  43. </a>
  44. <a class="btn btn-info" onclick="importTable()">
  45. <i class="fa fa-upload"></i> 导入
  46. </a>
  47. <a class="btn btn-primary single disabled" onclick="$.operate.editTab()" shiro:hasPermission="tool:gen:edit">
  48. <i class="fa fa-edit"></i> 修改
  49. </a>
  50. <a class="btn btn-danger multiple disabled" onclick="$.operate.removeAll()" shiro:hasPermission="tool:gen:remove">
  51. <i class="fa fa-remove"></i> 删除
  52. </a>
  53. </div>
  54. <div class="col-sm-12 select-table table-striped">
  55. <table id="bootstrap-table"></table>
  56. </div>
  57. </div>
  58. </div>
  59. <th:block th:include="include :: footer" />
  60. <th:block th:include="include :: select2-js" />
  61. <script th:inline="javascript">
  62. var prefix = ctx + "tool/gen";
  63. var editFlag = [[${@permission.hasPermi('tool:gen:edit')}]];
  64. var removeFlag = [[${@permission.hasPermi('tool:gen:remove')}]];
  65. var previewFlag = [[${@permission.hasPermi('tool:gen:preview')}]];
  66. var codeFlag = [[${@permission.hasPermi('tool:gen:code')}]];
  67. $(function() {
  68. var options = {
  69. url: prefix + "/list",
  70. updateUrl: prefix + "/edit/{id}",
  71. removeUrl: prefix + "/remove",
  72. sortName: "createTime",
  73. sortOrder: "desc",
  74. showExport: true,
  75. modalName: "生成配置",
  76. columns: [{
  77. checkbox: true
  78. },
  79. {
  80. field: 'tableId',
  81. title: '编号',
  82. visible: false
  83. },
  84. {
  85. title: "序号",
  86. formatter: function (value, row, index) {
  87. return $.table.serialNumber(index);
  88. }
  89. },
  90. {
  91. field: 'tableName',
  92. title: '表名称',
  93. sortable: true
  94. },
  95. {
  96. field: 'tableComment',
  97. title: '表描述',
  98. sortable: true
  99. },
  100. {
  101. field: 'className',
  102. title: '实体类名称',
  103. sortable: true
  104. },
  105. {
  106. field: 'createTime',
  107. title: '创建时间',
  108. sortable: true
  109. },
  110. {
  111. field: 'updateTime',
  112. title: '更新时间',
  113. sortable: true
  114. },
  115. {
  116. title: '操作',
  117. align: 'center',
  118. formatter: function(value, row, index) {
  119. var actions = [];
  120. actions.push('<a class="btn btn-info btn-xs ' + previewFlag + '" href="javascript:void(0)" onclick="preview(\'' + row.tableId + '\')"><i class="fa fa-search"></i>预览</a> ');
  121. actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="javascript:void(0)" onclick="$.operate.editTab(\'' + row.tableId + '\')"><i class="fa fa-edit"></i>编辑</a> ');
  122. actions.push('<a class="btn btn-danger btn-xs ' + removeFlag + '" href="javascript:void(0)" onclick="$.operate.remove(\'' + row.tableId + '\')"><i class="fa fa-remove"></i>删除</a> ');
  123. actions.push('<a class="btn btn-primary btn-xs ' + codeFlag + '" href="javascript:void(0)" onclick="genCode(\'' + row.tableName + '\')"><i class="fa fa-bug"></i>生成代码</a> ');
  124. return actions.join('');
  125. }
  126. }]
  127. };
  128. $.table.init(options);
  129. });
  130. // 预览代码
  131. function preview(tableId) {
  132. var preViewUrl = prefix + "/preview/" + tableId;
  133. $.modal.loading("正在加载数据,请稍后...");
  134. $.get(preViewUrl, function(result) {
  135. if (result.code == web_status.SUCCESS) {
  136. var items = [];
  137. $.each(result.data, function(index, value) {
  138. value = value.replace(/</g, "&lt;");
  139. value = value.replace(/>/g, "&gt;");
  140. var templateName = index.substring(index.lastIndexOf("/") + 1, index.length).replace(/\.vm/g, "");
  141. if(!$.common.equals("sql", templateName) && !$.common.equals("tree.html", templateName)){
  142. items.push({
  143. title: templateName , content: "<pre class=\"layui-code\">" + value + "</pre>"
  144. })
  145. }
  146. });
  147. top.layer.tab({
  148. area: ['90%', '90%'],
  149. shadeClose: true,
  150. tab: items
  151. });
  152. } else {
  153. $.modal.alertError(result.msg);
  154. }
  155. $.modal.closeLoading();
  156. });
  157. }
  158. // 生成代码
  159. function genCode(tableName) {
  160. $.modal.confirm("确定要生成" + tableName + "表代码吗?", function() {
  161. location.href = prefix + "/genCode/" + tableName;
  162. layer.msg('执行成功,正在生成代码请稍后…', { icon: 1 });
  163. })
  164. }
  165. //批量生成代码
  166. function batchGenCode() {
  167. var rows = $.table.selectColumns("tableName");
  168. if (rows.length == 0) {
  169. $.modal.alertWarning("请选择要生成的数据");
  170. return;
  171. }
  172. $.modal.confirm("确认要生成选中的" + rows.length + "条数据吗?", function() {
  173. location.href = prefix + "/batchGenCode?tables=" + rows;
  174. layer.msg('执行成功,正在生成代码请稍后…', { icon: 1 });
  175. });
  176. }
  177. // 导入表结构
  178. function importTable() {
  179. var importTableUrl = prefix + "/importTable";
  180. $.modal.open("导入表结构", importTableUrl);
  181. }
  182. function resetPre() {
  183. $.form.reset();
  184. $("select[name='tableName']").val(null).trigger("change");
  185. $("select[name='tableComment']").val(null).trigger("change");
  186. }
  187. </script>
  188. </body>
  189. </html>