index.vm
4.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
$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-search-many clearfix pt-15" >
<form class="form-horizontal xn-form clearfix" role="form" xn-form-validate novalidate name="validateForm">
<div class="xn-input-line clearfix">
<div class="xn-col-md-2"></div>
<div class="xn-col-md-12">
<input class="form-control" ng-model="vm.dateId" name="dateId" style="width: 90%" placeholder="请输入月份,例如:20180417"/>
</div>
<div class="xn-col-md-2">
<button class="btn btn-success btn-sm xn-text-right" ng-click="doSearch()">查询</button>
</div>
</div>
</form>
</div>
<div class="xn-table-wrap" style="">
<div class="clearfix" >
<div class="f-left mt_20 mb_10"><font color="#808080">护航总人次:</font> {{totalCount}}</div>
<div class="f-left mt_20 mb_10 ml-30"><font color="#808080">护航总人数:</font> {{totalNumber}}</div>
</div>
<table class="table table-bordered mt-30" style="width: 250px;float: left;" >
<thead>
<tr>
<th class="col-md-1 ">航线</th>
<th class="col-md-1 ">护行人次</th>
</tr>
</thead>
<tbody id="tbody">
<tr ng-repeat="linecount in lineCountList" >
<td class="xn-text-left">
{{linecount.lineId}}
</td>
<td class="xn-text-left">
{{linecount.value}}
</td>
</tr>
<tr ng-if="!totalCount || totalCount==0">
<td colspan="10" class="xn-center">无法找到相应的记录</td></tr>
</tbody>
</table>
<table class="table table-bordered ml-30 mt-30" style="width: 250px;float: left">
<thead>
<tr>
<th class="col-md-1 ">航线</th>
<th class="col-md-1 ">护行人数</th>
</tr>
</thead>
<tbody id="tbody">
<tr ng-repeat="linecount in lineNumberList" >
<td class="xn-text-left">
{{linecount.lineId}}
</td>
<td class="xn-text-left">
{{linecount.value}}
</td>
</tr>
<tr ng-if="!totalCount || totalCount==0">
<td colspan="10" class="xn-center">无法找到相应的记录</td></tr>
</tbody>
</table>
<table class="table table-bordered ml-30 mt-30" style="width: 250px;float: left">
<thead>
<tr>
<th class="col-md-1 ">公司</th>
<th class="col-md-1 ">护行人次</th>
</tr>
</thead>
<tbody id="tbody">
<tr ng-repeat="linecount in companyCountList" >
<td class="xn-text-left">
{{linecount.companyName}}
</td>
<td class="xn-text-left">
{{linecount.value}}
</td>
</tr>
<tr ng-if="!totalCount || totalCount==0">
<td colspan="10" class="xn-center">无法找到相应的记录</td></tr>
</tbody>
</table>
<table class="table table-bordered ml-30 mt-30" style="width: 250px;float: left">
<thead>
<tr>
<th class="col-md-1 ">公司</th>
<th class="col-md-1 ">护行人数</th>
</tr>
</thead>
<tbody id="tbody">
<tr ng-repeat="linecount in companyNumberList" >
<td class="xn-text-left">
{{linecount.companyName}}
</td>
<td class="xn-text-left">
{{linecount.value}}
</td>
</tr>
<tr ng-if="!totalCount || totalCount==0">
<td colspan="10" class="xn-center">无法找到相应的记录</td></tr>
</tbody>
</table>
</div>
</div>
<script src="$adminContent.getURI('dist/scripts/page/lineInfo.js')" ></script>