You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
3.3 KiB
HTML
76 lines
3.3 KiB
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="wrapper wrapper-content animated fadeInRight ibox-content">
|
|
<form class="form-horizontal m" id="form-delivery_task-edit" th:object="${recordDeliveryTask}">
|
|
<input name="deliveryTaskId" th:field="*{deliveryTaskId}" type="hidden">
|
|
<div class="col-xs-6">
|
|
<div class="form-group">
|
|
<label class="col-sm-4 control-label">交接码:</label>
|
|
<div class="col-sm-8">
|
|
<input name="taskCode" th:field="*{taskCode}" class="form-control" type="text">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-xs-6">
|
|
<div class="form-group">
|
|
<label class="col-sm-4 control-label">交接状态:</label>
|
|
<div class="col-sm-8">
|
|
<input name="taskState" th:field="*{taskState}" class="form-control" type="text">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-xs-6">
|
|
<div class="form-group">
|
|
<label class="col-sm-4 control-label">航班号:</label>
|
|
<div class="col-sm-8">
|
|
<input name="airCode" th:field="*{airCode}" class="form-control" type="text">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-xs-6">
|
|
<div class="form-group">
|
|
<label class="col-sm-4 control-label">交货位置:</label>
|
|
<div class="col-sm-8">
|
|
<input name="gpsLocation" th:field="*{gpsLocation}" class="form-control" type="text">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-xs-6">
|
|
<div class="form-group">
|
|
<label class="col-sm-4 control-label">接货位置:</label>
|
|
<div class="col-sm-8">
|
|
<input name="receiveGpsLocation" th:field="*{receiveGpsLocation}" class="form-control" type="text">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-xs-6">
|
|
<div class="form-group">
|
|
<label class="col-sm-4 control-label">类型:</label>
|
|
<div class="col-sm-8">
|
|
<select name="taskType" class="form-control" th:with="type=${@dict.getType('receive_task')}">
|
|
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{taskType}"></option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<th:block th:include="include :: footer" />
|
|
<script th:inline="javascript">
|
|
var prefix = ctx + "manager/delivery_task";
|
|
$("#form-delivery_task-edit").validate({
|
|
focusCleanup: true
|
|
});
|
|
|
|
function submitHandler() {
|
|
if ($.validate.form()) {
|
|
$.operate.save(prefix + "/edit", $('#form-delivery_task-edit').serialize());
|
|
}
|
|
}
|
|
</script>
|
|
</body>
|
|
</html> |