Browse Source

代码生成支持模糊条件查询

RuoYi 5 years ago
parent
commit
9ac3ca79f8

+ 14 - 0
ruoyi-admin/src/main/resources/static/ruoyi/css/ry-ui.css

@@ -737,6 +737,20 @@ label {
 	background-color: #12889a
 }
 
+.select-list .select2-container--bootstrap {
+	width: 200px!important;
+	display: inline-block;
+}
+
+.select-list .select2-container--bootstrap .select2-selection {
+	border-radius: 6px;
+}
+
+.select-list .select2-container--bootstrap .select2-selection--single {
+	height: 30px!important;
+	padding: 5px 10px;
+}
+
 .select-list .select-time input {
 	width: 93px;
 }

+ 3 - 3
ruoyi-admin/src/main/resources/templates/index.html

@@ -47,10 +47,10 @@
 				        </div>
 				    </div>
             	</li>
-                 <li>
-                    <a href="index.html"><i class="fa fa-home"></i> <span class="nav-label">主页</span> <span class="fa arrow"></span></a>
+                <li>
+                    <a href="#"><i class="fa fa-home"></i> <span class="nav-label">主页</span> <span class="fa arrow"></span></a>
                     <ul class="nav nav-second-level">
-                        <li class="active"><a class="menuItem" th:href="@{/system/main}">了解若依</a></li>
+                        <li><a class="menuItem" th:href="@{/system/main}">了解若依</a></li>
                     </ul>
                 </li>
                 <li th:each="menu : ${menus}">

+ 4 - 2
ruoyi-generator/src/main/java/com/ruoyi/generator/controller/GenController.java

@@ -46,8 +46,9 @@ public class GenController extends BaseController
 
     @RequiresPermissions("tool:gen:view")
     @GetMapping()
-    public String gen()
+    public String gen(ModelMap mmap)
     {
+        mmap.put("genTables", genTableService.selectGenTableList(new GenTable()));
         return prefix + "/gen";
     }
 
@@ -97,8 +98,9 @@ public class GenController extends BaseController
      */
     @RequiresPermissions("tool:gen:list")
     @GetMapping("/importTable")
-    public String importTable()
+    public String importTable(ModelMap mmap)
     {
+        mmap.put("dbTables", genTableService.selectDbTableList(new GenTable()));
         return prefix + "/importTable";
     }
 

+ 17 - 3
ruoyi-generator/src/main/resources/templates/tool/gen/gen.html

@@ -2,6 +2,7 @@
 <html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
 <head>
 	<th:block th:include="include :: header('代码生成列表')" />
+	<th:block th:include="include :: select2-css" />
 </head>
 <body class="gray-bg">
     <div class="container-div">
@@ -11,10 +12,16 @@
 					<div class="select-list">
 						<ul>
 							<li>
-								表名称:<input type="text" name="tableName"/>
+								表名称:<select name="tableName" class="form-control">
+									<option value="">所有</option>
+									<option th:each="table : ${genTables}" th:text="${table.tableName}" th:value="${table.tableName}"></option>
+								</select>
 							</li>
 							<li>
-								表描述:<input type="text" name="tableComment"/>
+								表描述:<select name="tableComment" class="form-control">
+									<option value="">所有</option>
+									<option th:each="table : ${genTables}" th:text="${table.tableComment}" th:value="${table.tableComment}"></option>
+								</select>
 							</li>
 							<li class="select-time">
 								<label>表时间: </label>
@@ -24,7 +31,7 @@
 							</li>
 							<li>
 								<a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i>&nbsp;搜索</a>
-								<a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset()"><i class="fa fa-refresh"></i>&nbsp;重置</a>
+								<a class="btn btn-warning btn-rounded btn-sm" onclick="resetPre()"><i class="fa fa-refresh"></i>&nbsp;重置</a>
 							</li>
 						</ul>
 					</div>
@@ -52,6 +59,7 @@
 		</div>
 	</div>
 	<th:block th:include="include :: footer" />
+	<th:block th:include="include :: select2-js" />
 	<script th:inline="javascript">
 		var prefix = ctx + "tool/gen";
 		var editFlag = [[${@permission.hasPermi('tool:gen:edit')}]];
@@ -178,6 +186,12 @@
 			var importTableUrl = prefix + "/importTable";
 			$.modal.open("导入表结构", importTableUrl);
 		}
+		
+		function resetPre() {
+			$.form.reset();
+			$("select[name='tableName']").val(null).trigger("change");
+			$("select[name='tableComment']").val(null).trigger("change");
+		}
 	</script>
 </body>
 </html>

+ 17 - 3
ruoyi-generator/src/main/resources/templates/tool/gen/importTable.html

@@ -2,6 +2,7 @@
 <html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
 <head>
 	<th:block th:include="include :: header('导入表结构')" />
+	<th:block th:include="include :: select2-css" />
 </head>
 <body class="gray-bg">
     <div class="container-div">
@@ -11,14 +12,20 @@
 					<div class="select-list">
 						<ul>
 							<li>
-								表名称:<input type="text" name="tableName"/>
+								表名称:<select name="tableName" class="form-control">
+									<option value="">所有</option>
+									<option th:each="table : ${dbTables}" th:text="${table.tableName}" th:value="${table.tableName}"></option>
+								</select>
 							</li>
 							<li>
-								表描述:<input type="text" name="tableComment"/>
+								表描述:<select name="tableComment" class="form-control">
+									<option value="">所有</option>
+									<option th:each="table : ${dbTables}" th:text="${table.tableComment}" th:value="${table.tableComment}"></option>
+								</select>
 							</li>
 							<li>
 								<a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i>&nbsp;搜索</a>
-								<a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset()"><i class="fa fa-refresh"></i>&nbsp;重置</a>
+								<a class="btn btn-warning btn-rounded btn-sm" onclick="resetPre()"><i class="fa fa-refresh"></i>&nbsp;重置</a>
 							</li>
 						</ul>
 					</div>
@@ -31,6 +38,7 @@
 		</div>
 	</div>
 	<th:block th:include="include :: footer" />
+	<th:block th:include="include :: select2-js" />
 	<script type="text/javascript">
 		var prefix = ctx + "tool/gen";
 	
@@ -91,6 +99,12 @@
 			var data = {"tables": rows.join()};
 			$.operate.save(prefix + "/importTable", data);
 		}
+		
+		function resetPre() {
+			$.form.reset();
+			$("select[name='tableName']").val(null).trigger("change");
+			$("select[name='tableComment']").val(null).trigger("change");
+		}
 	</script>
 </body>
 </html>