宝体数据调用接口
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.
 
 
 
 
 
 

69 lines
3.3 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>统计组名称</th>
<th>去重前出客量</th>
<th>去重后出客量</th>
<th>去重前进客量</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['groupName'] ?></p>
</td>
<td class="am-text-middle"><?= $item['flowInNum'] ?></td>
<td class="am-text-middle"><?= $item['flowOutNum'] ?></td>
<td class="am-text-middle"><?= $item['noRepeatInNum'] ?></td>
<td class="am-text-middle"><?= $item['noRepeatOutNum'] ?></td>
<td class="am-text-middle"><?= $item['holdValue'] ?></td>
<td class="am-text-middle"><?= $item['createTime'] ?></td>
<td class="am-text-middle"><?= $item['updateTime'] ?></td>
<td class="am-text-middle"><?= $item['netValue'] ?></td>
<td class="am-text-middle"><?= $item['statTime'] ?></td>
<td class="am-text-middle"><?= $item['granularity'] ?></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>