Files
SRCMS/Application/Admin/View/Post/index.html
Martin Zhou 9cc8998300 SRCMS·轻响应 V1.8正式版
修复:
1. 后台无法查看生成的工单
2. 前端页面JS远程资源失效问题
3.  前台用户密码修改设计缺陷(Issued By 藏形匿影)
优化:
1. 多处代码提升二次开发可读性
新增:
1. 安全工单模块中动态更新功能
2016-12-03 21:42:04 +08:00

55 lines
2.5 KiB
HTML

<include file="Public/header" title="漏洞审核" />
<div id="page-wrapper">
<div class="row">
<div class="col-md-6">
<a href="{:U('post/add')}" class="btn btn-success">添加报告</a>
</div>
<div class="col-md-6">
<form action="{:U('post/index')}" method="post">
<div class="form-group input-group">
<input type="text" class="form-control" name="key" placeholder="输入文章标题、作者或者分类关键词搜索">
<span class="input-group-btn">
<button class="btn btn-default" type="button"><i class="fa fa-search"></i></button>
</span>
</div>
</form>
</div>
</div>
<table class="table table-hover table-striped">
<thead>
<tr>
<th>编号</th>
<th>标题</th>
<th>状态</th>
<th>提交时间</th>
<th>提交者</th>
<th>分类</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<foreach name="model" item="v">
<tr>
<td>{$v.id}</td>
<td><a href="{:U('post/update?id=')}{$v.id}">{$v.title}</a></td>
<td>
<if condition="$v.type eq 1"><span class="label label-info">审核中</span>
<elseif condition="$v.type eq 2" /><span class="label label-default">已忽略</span>
<elseif condition="$v.type eq 3" /><span class="label label-warning">已确认</span>
<elseif condition="$v.type eq 4" /><span class="label label-success">已修复</span>
</if>
</td>
<td>{$v.time|date="Y/m/d",###}</td>
<td>{$v.username}</td>
<td>{$v.category_title}</td>
<td><a href="{:U('post/update?id=')}{$v.id}">审核</a> | <if condition="$v.visible eq 0"><a href="{:U('post/session?id=')}{$v.id}" target="_Blank">生成工单</a> <elseif condition="$v.visible eq 1" /><a href="{:U('check/view?session_id=')}{$v.session}" target="_Blank">查看工单</a></if> | <a href="{:U('post/delete?id=')}{$v.id}" style="color:red;" onclick="javascript:return del('您真的确定要删除吗?\n\n删除后将不能恢复!');">删除</a></td>
</tr>
</foreach>
</tbody>
</table>
<div class="clearfix"></div>
{$page}
</div>
<include file="Public/footer" />