Files
sentcms/view/admin/client/api.html
2020-04-07 21:42:06 +08:00

38 lines
857 B
HTML

{extend name="admin/public/base"/}
{block name="body"}
<div class="box box-primary">
<div class="box-header with-border">
<h3 class="box-title">{$meta_title}</h3>
<div class="box-tools pull-right">
</div>
</div>
<div class="box-body">
<div class="table-responsive clearfix">
<table class="table table-hover">
<thead>
<tr>
<th>ID</th>
<th>分组</th>
<th>名称</th>
<th>接口地址</th>
<th>方法类型</th>
<th>状态</th>
</tr>
</thead>
<tbody>
{volist name="list" id="item"}
<tr>
<td>{$key+1}</td>
<td>{$item['group']}</td>
<td>{$item['title']}</td>
<td>{:request()->domain()}/{$item['url']}</td>
<td>{$item['method']}</td>
<td>{$item['status']}</td>
</tr>
{/volist}
</tbody>
</table>
</div>
</div>
</div>
{/block}