agentDetails.html
1.4 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
<!DOCTYPE html>
<html lang="zh">
#@header()
<body>
<div>
<ol class="breadcrumb">
<li>
<a>货代管理</a>
</li>
<li>
<a style="color: gray;">/</a>
</li>
<li>
<a href="#(contextPath)/agent/list">货代列表</a>
</li>
<li>
<a style="color: gray;">/</a>
</li>
<li class="active">新建货代</li>
</ol>
<div style="margin: 10px;">
<table class="table table-bordered table-advance table-hover">
#if(agent)
<tr style="display: none;">
<td>货代ID</td>
<td><input class="form-control" type="text" name="agent.id" value="#(agent.id)" /></td>
</tr>
#end
<tr>
<td>公司</td>
<td><input class="form-control" name="agent.nameCN" type="text" value="#(agent.nameCN??)"
required /></td>
</tr>
<tr>
<td>负责人</td>
<td><input class="form-control" name="agent.manager" type="text"
value="#(agent.manager??)" required /></td>
</tr>
<tr>
<td>手机号</td>
<td><input class="form-control" name="agent.phone" type="text" value="#(agent.phone??)"
min-lenght="11" /></td>
</tr>
</table>
<div class="form-actions" style="margin-top: 10px; margin-left: 40%;">
<a class="btn" type="button" href="javascript:history.go(-1)" style="margin-left: 30px;">返 回</a>
</div>
</div>
</div>
<script type="text/javascript">
#if(flag)
showTip('#(flag)');
#end
</script>
</body>
</html>