mao a4e5648147 feat: 添加短信应用基本功能- 新增应用管理、短信中心、用户登录注册等功能页面
- 实现应用创建、删除、短信搜索、分页等功能
- 添加用户登录、注册、修改密码等账户管理功能
- 新增通用消息显示模板
2025-04-30 18:00:08 +08:00

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 ?>