mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
61 lines
1.9 KiB
HTML
61 lines
1.9 KiB
HTML
<!--
|
|
Copyright 2026 ShopeX (https://www.shopex.cn)
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<div class="tableform">
|
|
<div class="division">
|
|
<{if $data }>
|
|
<table width="100%" cellspacing="0" cellpadding="0" border="0" >
|
|
<tbody>
|
|
<tr><th>总调用次数:</th>
|
|
<td><{$data.total}></td>
|
|
</tr>
|
|
<tr><th>今日调用次数:</th>
|
|
<td><{$data.today}></td>
|
|
</tr>
|
|
<tr><th>昨日调用次数:</th>
|
|
<td><{$data.yesterday}></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<br/>
|
|
<{foreach from=$data.details item=obj key=key}>
|
|
<h5><{$obj.label}></h5>
|
|
<table class="gridlist" cellspacing="0" cellpadding="0" border="0" >
|
|
<thead>
|
|
<tr>
|
|
<th>接口方法</th>
|
|
<th>总调用次数</th>
|
|
<th>今日调用次数</th>
|
|
<th>昨日调用次数</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<{foreach from=$obj.info item=item key=k}>
|
|
<tr>
|
|
<td><{$item.label}></td>
|
|
<td><{$item.total}></td>
|
|
<td><{$item.today}></td>
|
|
<td><{$item.yesterday}></td>
|
|
</tr>
|
|
<{/foreach}>
|
|
</tbody>
|
|
</table>
|
|
<{/foreach}>
|
|
<{else}>
|
|
暂无统计消息
|
|
<{/if}>
|
|
</div>
|
|
</div> |