70 lines
2.1 KiB
HTML
70 lines
2.1 KiB
HTML
{extend name="public/base"/}
|
|
{block name="body"}
|
|
<div class="main-box clearfix">
|
|
<header class="main-box-header clearfix">
|
|
<div class="pull-left">
|
|
<h2>{$meta_title}</h2>
|
|
</div>
|
|
<div class="pull-right">
|
|
<button class="btn btn-danger ajax-post confirm" url="{:url('admin/novelcheck/checknovel?model_id=1')}" 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>
|
|
|
|
<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">
|
|
|
|
<ul class="nav nav-tabs" style="margin-top:20px;">
|
|
<li class="active">
|
|
<a href="{:url('index')}">新作审核</a>
|
|
</li>
|
|
<li>
|
|
<a href="{:url('chapter')}">章节审核</a>
|
|
</li>
|
|
<li >
|
|
<a href="{:url('sign')}">签约审核</a>
|
|
</li>
|
|
<li >
|
|
<a href="{:url('vip')}">VIP审核</a>
|
|
</li>
|
|
</ul>
|
|
|
|
<table class="table table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th width="30"><input class="checkbox check-all" type="checkbox"></th>
|
|
<th>ID</th>
|
|
<th>书籍</th>
|
|
<th>添加时间</th>
|
|
<th>操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{volist name="list" id="item"}
|
|
<tr>
|
|
<td><input class="ids row-selected" type="checkbox" name="id[]" value="{$item['id']}"></td>
|
|
<td>{$item['id']}</td>
|
|
<td><a href="{:url('admin/chapter/index?model_id=1',array('id'=>$item['id']))}" target="_blank">{$item['title']}</a></td>
|
|
<td>{$item['create_time']|date='Y-m-d H:i',###}</td>
|
|
<td><a href="{:url('admin/novel/status?model_id=1',array('id'=>$item['id'],'status'=>'1'))}" class="ajax-get">审核</a></td>
|
|
</tr>
|
|
{/volist}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{$page}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{/block} |