timeTempletUpload.html
3.44 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
95
96
<link href="css/trafficManage.css" rel="stylesheet" type="text/css" />
<ul class="page-breadcrumb breadcrumb">
<li><a href="/pages/home.html" data-pjax>首页</a> <i
class="fa fa-circle"></i></li>
<li><span class="active">运维管理</span> <i class="fa fa-circle"></i></li>
<li><span class="active">时刻模板上传</span></li>
</ul>
<div class="tab_line">
<div class="col-md-12">
<form class="form-inline" action="">
<div style="display: inline-block;" class="param">
<span class="item-label" style="width: 80px;">线路: </span>
<select class="form-control" name="xl.lineCode_like" id="line" style="width: 180px;"></select>
</div>
<div style="display: inline-block;margin-left: 15px;" class="param">
<span class="item-label" style="width: 80px;">模板名称(关键字): </span>
<input class="form-control" type="text" id="tempName" name="name_like" style="width: 180px;"/>
</div>
<div class="form-group" style="display: inline-block;margin-left: 15px;">
<input class="btn btn-default" type="button" id="search" value="查询"/>
<input class="btn btn-default" type="button" id="upload" value="上传"/>
<!-- <input class="btn btn-default" type="button" id="setXL" value="上传线路"/>
<input class="btn btn-default" type="button" id="setCL" value="上传车辆"/>
<input class="btn btn-default" type="button" id="setSJ" value="上传司机"/>
<input class="btn btn-default" type="button" id="setCS" value="超速"/>
<input class="btn btn-default" type="button" id="setXLPC" value="线路人员车辆"/>
<input class="btn btn-default" type="button" id="setJHBC" value="线路计划班次表"/> -->
</div>
</form>
</div>
<!-- Begin: left-div -->
<div class="col-md-5 panel-wrap" style="height: 60%;">
<div class="_panel">
<div class="_head" style="color: #2765A7;">待选线路模板列表</div>
<div class="table-container" id="left_div">
<table
class="table table-striped table-bordered table-advance pb-table head">
<thead>
<tr>
<th width="5%">#</th>
<th width="20%">线路名称</th>
<th width="15%">模板ID</th>
<th width="25%">模板名称</th>
<th>启用日期</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
<div class="col-md-2" style="height: 60%;">
<ul class="breadcruma divVerHorCenter">
<li><a class="btn btn-circle blue btn-outline" id="to_right">>></a></li>
<li><a class="btn btn-circle blue btn-outline" id="to_left"><<</a></li>
</ul>
</div>
<!-- End: left-div -->
<!-- Begin: right-div -->
<div class="col-md-5 panel-wrap" style="height: 60%;">
<div class="_panel">
<div class="_head" style="color: #2765A7;">已选线路模板列表</div>
<div class="table-container" id="right_div"></div>
</div>
</div>
<!-- End: right-div -->
</div>
<script id="timeTemplet_list_temp" type="text/html">
{{each list as obj i}}
<tr>
<td class="seq" style="vertical-align: middle;">
{{i+1}}
</td>
<td>
{{obj.xl.name}}
</td>
<td class="ttInfoId">
{{obj.id}}
<input type="hidden" value="{{obj.id}}"/>
</td>
<td>
{{obj.name}}
</td>
<td >
{{obj.qyrq}}
</td>
</tr>
{{/each}}
{{if list.length == 0}}
<tr class="muted">
<td colspan=5 style="text-align: center;"><h6>没有找到相关数据</h6></td>
</tr>
{{/if}}
</script>
<script src="./js/timeTempletUpload.js"></script>