applyPreEdit.html
2.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="zh">
#@header()
<body>
<div>
<ol class="breadcrumb">
<li>
<a>进场预申请</a>
</li>
<li>
<a style="color: gray;">/</a>
</li>
<li class="active">新建预申请</li>
</ol>
<div style="margin: 10px;">
<form action="#(contextPath)/car/submitPre" method="post">
<table class="table table-bordered table-advance table-hover">
<tbody>
#if(car)
<tr style="display: none;">
<td>ID</td>
<td colspan="2"><input class="form-control" type="text" name="car.id" value="#(car.id)" /></td>
</tr>
#end
<tr>
<td>司机名称</td>
<td colspan="2"><input class="form-control" name="car.driverName" type="text"
value="#(car.driverName??)" required /></td>
</tr>
<tr>
<td>司机手机号</td>
<td colspan="2"><input class="form-control" name="car.phone" type="text"
value="#(car.phone??)" required /></td>
</tr>
<tr>
<td>车牌号</td>
<td colspan="2"><input class="form-control" name="car.carNo" type="text"
value="#(car.carNo??)" required /></td>
</tr>
<tr>
<td>航班号</td>
<td colspan="2"><input class="form-control" name="car.flightNumber" type="text"
value="#(car.flightNumber??)" /></td>
</tr>
<tr>
<td>业务类型</td>
<td><select class="input-small m-wrap" tabindex="1" style="width: 200px;"
name="car.isPickup" required>
<option value="">选择业务</option>
<option value="1">提货</option>
<option value="0">卸货</option>
</select></td>
</tr>
<tr>
<td>货站</td>
<td><select class="input-small m-wrap" tabindex="1" style="width: 200px;"
name="car.stationArea" required>
<!-- <option value="">选择货站</option> -->
#for(station : stationList)
<option value="#(station.areaCode)"
#if(car.stationArea??==station.areaCode)
selected
#end
>
#(station.name)
</option>
#end
</select></td>
</tr>
</tbody>
</table>
<div class="form-actions" style="margin-top: 10px; margin-left: 40%;">
<button class="btn btn-success" type="submit">保 存</button>
<a class="btn" type="button" href="javascript:history.go(-1)" style="margin-left: 30px;">返 回</a>
</div>
</form>
</div>
</div>
<script type="text/javascript">
#if(flag)
showTip('#(flag)');
#end
</script>
</body>
</html>