27 lines
909 B
HTML
27 lines
909 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh" xmlns:th="http://www.thymeleaf.org">
|
|
<head>
|
|
<th:block th:include="include :: header('输入托盘号')" />
|
|
</head>
|
|
<body class="white-bg">
|
|
<div class="main-content">
|
|
<form class="form-horizontal m" id="form-move-edit">
|
|
<div class="form-group">
|
|
<ul>
|
|
<li style="margin-bottom: 10px">
|
|
缓存位:
|
|
<input style="width: 150px" name="areaCode" id="areaCode" th:value="${areaCode}" class="form-control" readonly required>
|
|
</li>
|
|
<li style="margin-bottom: 10px">
|
|
托盘号:
|
|
<input style="width: 150px" name="ctl" id="ctl" class="form-control" required>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div th:include="include :: footer"></div>
|
|
<script th:inline="javascript">
|
|
</script>
|
|
</body>
|
|
</html> |