realTimeData.vm 2.92 KB
$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">
        <div align="right">
            <input type="text" placeholder="搜用户" ng-model="vm.userId"/>
            <button class="btn btn-success btn-sm xn-text-right" ng-click="doSearch()">查询</button>
        </div>
        </br>
        <table class="table table-bordered">
            <thead>
            <tr>
                <th style="text-align: center">用户</th>
                <th style="text-align: center">时间</th>
                <th style="text-align: center">线路</th>
                <th style="text-align: center">车次号</th>
                <th style="text-align: center">车体号</th>
                <th style="text-align: center">车厢号</th>
                <th style="text-align: center">本站</th>
                <th style="text-align: center">下一站</th>
            </tr>
            </thead>
            <tbody id="tbody">
            <tr ng-repeat="escortAttendanceLog in escortAttendanceLogList" style="text-align: center">

                <td>
                    {{escortAttendanceLog.userId}}
                </td>
                <td>
                    {{escortAttendanceLog.logTime}}
                </td>
                <td>
                    {{escortAttendanceLog.trainLineId}}
                </td>
                <td>
                    {{escortAttendanceLog.trainId}}
                </td>
                <td>
                    {{escortAttendanceLog.trainGroupId}}
                </td>
                <td>
                    {{escortAttendanceLog.trainCarriageId}}
                </td>
                <td>
                    {{escortAttendanceLog.currentStation}}
                </td>
                <td>
                    {{escortAttendanceLog.nextStation}}
                </td>
            </tr>
            <tr ng-if="!vm.totalCount || vm.totalCount==0">
                <td colspan="10" class="xn-center">无法找到相应的记录</td></tr>
            </tbody>
        </table>
        <div class="xn-text-center">
            <div class="f-left mt-20 mb-10 ng-binding">共{{vm.totalCount}}条</div>
            <pagination  ng-show="vm.totalCount>vm.pageSize"  ng-change="getList()"  max-size="maxPageSize" total-items="vm.totalCount"
                         ng-model="vm.pageNumber" items-per-page="vm.pageSize"  class="pagination-sm"  boundary-links="true"
                         previous-text="&lsaquo;" next-text="&rsaquo;" first-text="&laquo;" last-text="&raquo;">
            </pagination>
        </div>
    </div>
</div>

<script src="$adminContent.getURI('dist/scripts/page/realTimeData.js')" ></script>