实例演示中增加多层窗口获取值

This commit is contained in:
RuoYi
2021-09-06 16:44:29 +08:00
parent f51b4f40f1
commit 38f7ecb671
5 changed files with 162 additions and 12 deletions

View File

@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
<head>
<th:block th:include="include :: header('多层窗口B')" />
</head>
<body class="gray-bg">
<div class="container-div">
<div class="row">
<form id="form-user-add" class="form-horizontal">
<div class="row">
<div class="col-sm-12" style="margin-top: 20px">
<div class="form-group">
<label class="col-sm-4 control-label">用户名称:</label>
<div class="col-sm-4">
<input id="name" placeholder="请输入用户名称" class="form-control" type="text">
</div>
</div>
</div>
</div>
</form>
</div>
</div>
</body>
</html>