index.vm
2.62 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
$page.setTitle("护航信息")
<div class="xn-breadcrumb auto xn-width clearfix ">
<ul class="breadcrumb">
<li><a class="icon icon-home_page" href="$adminLink.setTarget("index")"></a> </li>
<li class="active">护航信息列表</li>
</ul>
</div>
<div class="xn-main auto xn-width clearfix" ng-controller="RailwayController">
<div class="xn-table-wrap">
<table class="table table-bordered">
<thead>
<tr>
<th class="col-md-1 ">用户</th>
#* <th class="col-md-1 ">类型</th>*#
<th class="col-md-1 ">日期ID</th>
<th class="col-md-1 ">时间</th>
<th class="col-md-1 ">地点</th>
<th class="col-md-1 ">车次号</th>
<th class="col-md-1 ">车体号</th>
<th class="col-md-1 ">线路号</th>
<th class="col-md-1 ">车厢号</th>
<th class="col-md-1 ">车门</th>
</tr>
</thead>
<tbody id="tbody">
<tr ng-repeat="escortAttendance in escortAttendanceList" >
<td class="xn-text-left">
{{escortAttendance.userName}}
</td>
#* <td class="xn-text-left">
上岗
</td>*#
<td class="xn-text-left">
{{escortAttendance.dateId}}
</td>
<td class="xn-text-left">
{{escortAttendance.laidTime}}
</td>
<td class="xn-text-left">
{{escortAttendance.laidLocation }}
</td>
<td class="xn-text-left">
{{escortAttendance.trainId}}
</td>
<td class="xn-text-left">
{{escortAttendance.trainGroupId}}
</td>
<td class="xn-text-left">
{{escortAttendance.trainLineId }}
</td>
<td class="xn-text-left">
{{escortAttendance.trainCarriageId}}
</td>
<td class="xn-text-left">
{{escortAttendance.trainDoorId}}
</td>
</tr>
<tr ng-if="!vm.totalCount || vm.totalCount==0">
<td colspan="10" class="xn-center">无法找到相应的记录</td></tr>
</tbody>
</table>
<div class="clearfix" >
<div class="f-left mt_20 mb_10">共{{vm.totalCount}}条</div>
</div>
</div>
</div>
<script src="$adminContent.getURI('dist/scripts/page/index.js')" ></script>