You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
2.9 KiB
63 lines
2.9 KiB
<div class="row">
|
|
<div class="am-u-sm-12 am-u-md-12 am-u-lg-12">
|
|
<div class="widget am-cf">
|
|
<div class="widget-head am-cf">
|
|
<div class="widget-title am-cf">客流实时统计数据</div>
|
|
</div>
|
|
<div class="widget-body am-fr">
|
|
<div class="am-u-sm-12 am-u-md-6 am-u-lg-6">
|
|
<div class="am-form-group">
|
|
<div class="am-btn-toolbar">
|
|
<div class="am-btn-group am-btn-group-xs">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="am-u-sm-12">
|
|
<table width="100%" class="am-table am-table-compact am-table-striped tpl-table-black ">
|
|
<thead>
|
|
<tr>
|
|
<th>统计组ID</th>
|
|
<th>区域id</th>
|
|
<th>统计组时间</th>
|
|
<th>去重后进客流</th>
|
|
<th>去重后出客流</th>
|
|
<th>总经过人数</th>
|
|
<th>保有量</th>
|
|
<th>去重前进入人数</th>
|
|
<th>去重前离开人数</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php if (!empty($list)): foreach ($list as $item): ?>
|
|
<tr>
|
|
<td class="am-text-middle">
|
|
<p class="item-title"><?= $item['groupId'] ?></p>
|
|
</td>
|
|
<td class="am-text-middle">
|
|
<p class="item-title"><?= $item['regionId'] ?></p>
|
|
</td>
|
|
<td class="am-text-middle"><?= $item['statisticsTime'] ?></td>
|
|
<td class="am-text-middle"><?= $item['enter'] ?></td>
|
|
<td class="am-text-middle"><?= $item['exit'] ?></td>
|
|
<td class="am-text-middle"><?= $item['pass'] ?></td>
|
|
<td class="am-text-middle"><?= $item['holdValue'] ?></td>
|
|
<td class="am-text-middle"><?= $item['allEnter'] ?></td>
|
|
<td class="am-text-middle"><?= $item['allExit'] ?></td>
|
|
</tr>
|
|
<?php endforeach; else: ?>
|
|
<tr>
|
|
<td colspan="4" class="am-text-center">暂无记录</td>
|
|
</tr>
|
|
<?php endif; ?>
|
|
</tbody>
|
|
</table>
|
|
<?= $pageData ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
</script>
|
|
|
|
|