mirror of
https://gitee.com/ulthon/ulthon_information.git
synced 2026-03-04 00:24:29 +08:00
101 lines
2.6 KiB
HTML
101 lines
2.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>应用管理</title>
|
|
{include file="common/_require"}
|
|
|
|
<script>
|
|
var currentHeaderNavItem = 'Post-{$Request.param.type|default="1"}';
|
|
var currentLeftNavItem = 'comment-{$Request.param.type|default="1"}';
|
|
</script>
|
|
</head>
|
|
|
|
<body class="layui-layout-body">
|
|
|
|
<div class="layui-layout layui-layout-admin">
|
|
{include file="common/_header"}
|
|
|
|
{include file="common/left_post"}
|
|
|
|
<div class="layui-body">
|
|
|
|
<div style="padding:15px">
|
|
<div class="main-header">
|
|
<span class="layui-breadcrumb">
|
|
<a>首页</a>
|
|
<a><cite>系统信息</cite></a>
|
|
</span>
|
|
</div>
|
|
<div class="main-container">
|
|
<table class="layui-table" lay-skin="line">
|
|
<thead>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>文章</th>
|
|
<th>评论</th>
|
|
<th>用户</th>
|
|
<th>评论时间</th>
|
|
|
|
<th>操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{volist name='list' id='vo'}
|
|
|
|
<tr class="item" data-id="{$vo.id}">
|
|
<td>{$vo.id}</td>
|
|
<td>{$vo.post.title}</td>
|
|
<td>{$vo.content}</td>
|
|
<td>
|
|
<p>{$vo.user.nickname}</p>
|
|
<p>{$vo.user.username}</p>
|
|
</td>
|
|
<td>{$vo.create_time}</td>
|
|
<td>
|
|
<div class="layui-btn-container">
|
|
<a class="layui-btn layui-btn-sm" target="_blank" href="{$vo.read_url}">查看</a>
|
|
<div class="layui-btn layui-btn-sm delete">删除</div>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
{/volist}
|
|
{if condition="count($list) == 0" }
|
|
<tr>
|
|
<td colspan="7">暂无数据</td>
|
|
</tr>
|
|
{/if}
|
|
</tbody>
|
|
</table>
|
|
<div>
|
|
{$list|raw}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
{include file="common/_footer"}
|
|
</div>
|
|
|
|
|
|
<script>
|
|
$('.delete').click(function () {
|
|
var item = this;
|
|
layer.confirm('确定要删除吗?', function () {
|
|
$.get('{:url("delete")}', {
|
|
id: $(item).parents('.item').data('id')
|
|
}, function (result) {
|
|
layer.msg('删除成功');
|
|
|
|
$(item).parents('.item').remove();
|
|
})
|
|
})
|
|
})
|
|
</script>
|
|
</body>
|
|
|
|
</html> |