35 lines
1.1 KiB
HTML
35 lines
1.1 KiB
HTML
<?= $header ?>
|
|
|
|
<div class="layui-col-md6">
|
|
<div class="layui-card">
|
|
<div class="layui-card-header">应用管理</div>
|
|
<div class="layui-card-body">
|
|
<a href="/sms/create-app/" class="layui-btn">创建应用</a>
|
|
<hr>
|
|
<table class="layui-table">
|
|
<thead>
|
|
<tr>
|
|
<th>应用名称</th>
|
|
<th>UUID</th>
|
|
<th>创建时间</th>
|
|
<th>操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach ($sms_app as $app): ?>
|
|
<tr>
|
|
<td><?= $app['app_name'] ?></td>
|
|
<td><?= $app['app_uuid'] ?></td>
|
|
<td><?= $app['created_at'] ?></td>
|
|
<td>
|
|
<a href="/sms/delete-app?id=<?= $app['id'] ?>" class="layui-btn layui-btn-xs">删除</a>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?= $footer ?> |