Merge remote-tracking branch 'origin/new-exam' into new-exam

pg_adapter
wangxy 8 months ago
commit 7f4cd784a0

@ -2,6 +2,7 @@
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro"> <html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
<head> <head>
<th:block th:include="include :: header('场所出入登记')" /> <th:block th:include="include :: header('场所出入登记')" />
<th:block th:include="include :: datetimepicker-css" />
</head> </head>
<body class="gray-bg"> <body class="gray-bg">
<div class="container-div" id="app"> <div class="container-div" id="app">
@ -20,7 +21,7 @@
</li> </li>
<li> <li>
<label>登记日期:</label> <label>登记日期:</label>
<input type="text" class="time-input" placeholder="请选择登记日期" name="registTime"/> <input name="registTime" required class="form-control m-b" id="datetimepicker-demo-3" type="text">
</li> </li>
<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-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i>&nbsp;搜索</a>
@ -48,6 +49,7 @@
</div> </div>
</div> </div>
<th:block th:include="include :: footer" /> <th:block th:include="include :: footer" />
<th:block th:include="include :: datetimepicker-js" />
<script th:inline="javascript"> <script th:inline="javascript">
var detailFlag = [[${@permission.hasPermi('system:placeRegist:detail')}]]; var detailFlag = [[${@permission.hasPermi('system:placeRegist:detail')}]];
var editFlag = [[${@permission.hasPermi('system:placeRegist:edit')}]]; var editFlag = [[${@permission.hasPermi('system:placeRegist:edit')}]];
@ -149,6 +151,10 @@
}; };
$.table.init(options); $.table.init(options);
}); });
$("input[name='registTime']").datetimepicker({
format: "yyyy-mm-dd hh:ii",
autoclose: true
});
</script> </script>
</body> </body>
</html> </html>

Loading…
Cancel
Save