shLineCodeList.html
2.03 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
<link href="css/autocompleter.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">
<ul class="breadcrumb">
<li>线路名称:</li>
<li><input type="text" class="form-control form-filter input-sm"
name="name_like" placeholder="请输入线路名称" maxlength="40" /></li>
<li><a class="btn btn-circle blue" id="search">查询</a></li>
</ul>
</div>
<div class="col-md-12 panel-wrap">
<div class="_panel">
<div class="table-container">
<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%">所属公司</th>
<th width="25%">调度方式</th>
<th>上海市线路编码</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<div style="text-align: right;">
<ul id="pagination" class="pagination"></ul>
</div>
</div>
</div>
</div>
</div>
<script id="shLineCode_list_temp" type="text/html">
{{each list as obj i}}
<tr>
<td class="seq" style="vertical-align: middle;">
{{i+1}}
</td>
<td>
{{obj.name}}
</td>
<td class="ttInfoId">
{{obj.company}}
</td>
<td>
</td>
<td >
{{obj.shanghaiLinecode}}
</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/shLineCodeList.js"></script>
<script>
var cssArr=['css/trafficManage.css'];
for (let css of cssArr) {
if(window.localStorage.getItem('system_style')=='dark'){
css=css.replace('.css','_dark.css');
loadCSS(css)
}else {
loadCSS(css);
}
}
</script>