add.html
2.8 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
<include file="public@header"/>
<style type="text/css">
.pic-list li {
margin-bottom: 5px;
}
.hide {
display: none;
}
</style>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
</head>
<body>
<div class="wrap js-check-wrap">
<ul class="nav nav-tabs">
<li><a href="{:url('Logistics/index')}">物流列表</a></li>
<li class="active"><a href="{:url('Logistics/add')}">添加物流</a></li>
</ul>
<form action="{:url('Logistics/addPost')}" method="post" class="form-horizontal js-ajax-form margin-top-20">
<div class="row">
<div class="col-md-5">
<table class="table table-bordered">
<tr>
<th>手机号码<span class="form-required">*</span></th>
<td>
<input class="form-control" type="text" name="mobile"
id="mobile" required value="" placeholder="请输入手机号码"/>
</td>
</tr>
<tr>
<th>发货日期<span class="form-required">*</span></th>
<td>
<input class="form-control js-bootstrap-date" type="text" name="send_time"
id="send_time" required value="" placeholder="请选择发货日期"/>
</td>
</tr>
<tr>
<th>版本<span class="form-required">*</span></th>
<td>
<input class="form-control" type="text" name="version"
id="version" required value="" placeholder="请输入版本"/>
</td>
</tr>
<tr>
<th>快递单号<span class="form-required">*</span></th>
<td>
<input class="form-control" type="text" name="express"
id="express" required value="" placeholder="请输入快递单号"/>
</td>
</tr>
</table>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-primary js-ajax-submit">{:lang('ADD')}</button>
<a class="btn btn-default" href="{:url('Logistics/index')}">{:lang('BACK')}</a>
</div>
</div>
</div>
</div>
</form>
</div>
<script type="text/javascript" src="__STATIC__/js/admin.js"></script>
<script type="text/javascript" src="__STATIC__/js/forms.js"></script>
</body>
</html>