134 lines
4.2 KiB
HTML
134 lines
4.2 KiB
HTML
{extend name="public/base"/}
|
|
{block name="body"}
|
|
|
|
<div class="main-box clearfix">
|
|
<header class="main-box-header clearfix">
|
|
<div class="pull-left">
|
|
<ul class="nav nav-tabs">
|
|
<li >
|
|
<a href="{:url('admin/config/themes')}">主题设置</a>
|
|
</li>
|
|
<li >
|
|
<a href="{:url('admin/promotion/index')}">促销活动</a>
|
|
</li>
|
|
{if session('user_auth.group')!=4&&session('user_auth.group')!=3}
|
|
<li >
|
|
<a href="{:url('admin/notice/index')}">通知公告</a>
|
|
</li>
|
|
<li >
|
|
<a href="{:url('feedback/index',array('model'=>1))}">小说评论</a>
|
|
</li>
|
|
<li >
|
|
<a href="{:url('admin/message/faceback')}">意见反馈</a>
|
|
</li>
|
|
<li>
|
|
<a href="{:url('admin/message/index')}">消息</a>
|
|
</li>
|
|
|
|
<li class="active">
|
|
<a href="{:url('admin/jubao/index')}">举报信息</a>
|
|
</li>
|
|
{/if}
|
|
</ul>
|
|
</div>
|
|
<div class="pull-right">
|
|
<!---
|
|
<a class="btn btn-primary" href="{:url('admin/content/add?model_id='.$model_id)}">新 增</a>
|
|
--->
|
|
<button class="btn btn-danger ajax-post confirm" url="{:url('admin/content/del?model_id='.$model_id)}" target-form="ids">删 除</button>
|
|
</div>
|
|
</header>
|
|
|
|
|
|
<div class="main-box-body clearfix">
|
|
|
|
<div class="row">
|
|
<form method="get">
|
|
<div class="col-sm-12 col-md-4 col-lg-3">
|
|
<input type="text" class="form-control" name="keyword" value="{$keyword|default=''}" placeholder="请输入关键字">
|
|
</div>
|
|
{if isset($cate_list)}
|
|
<div class="col-sm-12 col-md-4 col-lg-3">
|
|
<select name="category" id="category" class="form-control">
|
|
<option value="">请选择栏目</option>
|
|
{volist name="cate_list" id="item"}
|
|
<option value="{$item['id']}" {if isset($category) && $item['id'] == $category}selected{/if}>{$item['title_show']}</option>
|
|
{/volist}
|
|
</select>
|
|
</div>
|
|
{/if}
|
|
<div class="col-sm-12 col-md-4">
|
|
<button class="btn btn-primary" type="submit">搜索</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div class="table-responsive clearfix">
|
|
|
|
<div class="table-responsive clearfix">
|
|
<table class="table table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th width="30"><input class="checkbox check-all" type="checkbox"></th>
|
|
{volist name="grid['grids']" id="item"}
|
|
<th>{$item['title']}</th>
|
|
{/volist}
|
|
<th>操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{if condition="empty($list)"}
|
|
{php}
|
|
$cow = count($grid['grids'])+2;
|
|
{/php}
|
|
<tr>
|
|
<td colspan="{$cow}" align="center">暂无数据!</td>
|
|
</tr>
|
|
{else/}
|
|
{volist name="list" id="item"}
|
|
<tr>
|
|
<td><input class="ids row-selected" type="checkbox" name="id[]" value="{$item['id']}"></td>
|
|
{volist name="grid['grids']" id="vo"}
|
|
{if isset($vo['format'])}
|
|
<td>{$item[$vo['field'][0]]|$vo['format']}</td>
|
|
{elseif $vo['field'][0]=='type'}
|
|
<td>
|
|
{switch item[$vo['field'][0]] }
|
|
{case 1 }包含低俗信息{/case}
|
|
{case 2}包含暴力恐怖信息{/case}
|
|
{case 3}包含色情信息{/case}
|
|
{case 4}包含政治敏感信息{/case}
|
|
{default /}其他
|
|
{/switch}
|
|
</td>
|
|
{else/}
|
|
<td>{$item[$vo['field'][0]]}</td>
|
|
{/if}
|
|
{/volist}
|
|
<td>
|
|
{if isset($item['is_top'])}
|
|
{if $item['is_top']}
|
|
<a href="{:url('admin/content/settop?model_id='.$model_id,array('id'=>$item['id'],'is_top'=>'0'))}" class="ajax-get">取消置顶</a>
|
|
{else/}
|
|
<a href="{:url('admin/content/settop?model_id='.$model_id,array('id'=>$item['id'],'is_top'=>'1'))}" class="ajax-get">置顶</a>
|
|
{/if}
|
|
{/if}
|
|
{if isset($item['status'])}
|
|
{if $item['status']}
|
|
<a href="{:url('admin/content/status?model_id='.$model_id,array('id'=>$item['id'],'status'=>'0'))}" class="ajax-get">取消审核</a>
|
|
{else/}
|
|
<a href="{:url('admin/content/status?model_id='.$model_id,array('id'=>$item['id'],'status'=>'1'))}" class="ajax-get">审核</a>
|
|
{/if}
|
|
{/if}
|
|
<a href="{:url('admin/content/del?model_id='.$model_id,array('id'=>$item['id']))}" class="ajax-get confirm">删除</a>
|
|
</td>
|
|
</tr>
|
|
{/volist}
|
|
{/if}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{$page}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{/block} |