details.html
2.73 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
97
98
99
100
101
102
103
104
105
106
107
<div class="page-head">
<div class="page-title">
<h1>线路详细信息</h1>
</div>
</div>
<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><a href="/pages/base/line/list.html" data-pjax>线路信息</a> <i class="fa fa-circle"></i></li>
<li><span class="active">线路详情</span></li>
</ul>
<div class="row">
<div class="col-md-12">
<div class="portlet light porttlet-fit bordered">
<div class="portlet-title">
<div class="caption">
<i class="fa fa-info-circle font-dark"></i>
<span class="caption-subject font-dark sbold uppercase">线路详情</span>
</div>
<div class="actions">
<div class="btn-group btn-group-devided" data-toggle="buttons">
<a class="btn btn-circle blue" href="list.html" data-pjax><i class="fa fa-reply"></i> 返回</a>
</div>
</div>
</div>
<div class="portlet-body">
<div class="table-container" style="margin-top: 10px">
<table class="table table-striped table-bordered table-hover table-checkable" id="line_details">
<thead>
<tr role="row" class="heading">
<th width="8%">线路编码</th>
<th width="8%">线路名称</th>
<th width="10%">英文名称</th>
<th width="10%">线路简称</th>
<th width="10%">所属公司</th>
<th width="10%">所属分公司</th>
<th width="10%">线路性质</th>
<th width="10%">线路等级</th>
<th width="10%">是否撤消</th>
<th width="10%">是否夜宵线</th>
<th width="10%">起始站调度电话</th>
<th width="10%">终点站调度电话</th>
<th width="10%">开辟日期</th>
<th width="10%">线路沿革</th>
</tr>
</thead>
<tbody></tbody>
</table>
<div style="text-align: right;">
<ul id="pagination" class="pagination"></ul>
</div>
</div>
</div>
</div>
</div>
</div>
<script type="text/html" id="line_details_temp">
{{each list as obj i }}
<tr>
<td>
{{obj.lineCode}}
</td>
<td>
{{obj.name}}
</td>
<td>
{{obj.es}}
</td>
<td>
{{obj.shortName}}
</td>
<td>
{{obj.company}}
</td>
<td>
{{obj.brancheCompany}}
</td>
<td>
{{obj.nature}}
</td>
<td>
{{obj.level}}
</td>
<td>
{{obj.destroy}}
</td>
<td>
{{obj.supperLine}}
</td>
<td>
{{obj.startPhone}}
</td>
<td>
{{obj.endPhone}}
</td>
<td>
{{obj.openDate}}
</td>
<td>
{{obj.history}}
</td>
</tr>
{{/each}}
</script>
<script type="text/javascript" src="/pages/base/line/js/line-details-info.js"></script>