120 lines
4.4 KiB
HTML
120 lines
4.4 KiB
HTML
{extend name="public/base"/}
|
|
{block name="style"}
|
|
<link rel="stylesheet" type="text/css" href="__PUBLIC__/css/libs/bootstrap-editable.css">
|
|
{/block}
|
|
{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">
|
|
<a class="btn btn-primary" href="{:url('admin/promotion/add?model_id='.$model_id)}">新 增</a>
|
|
<button class="btn btn-danger ajax-post confirm" url="{:url('admin/promotion/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}VIP充值{/case}
|
|
{default /}
|
|
{/switch}
|
|
</td>
|
|
{elseif $vo['field'][0] == 'sort'}
|
|
<td>
|
|
<a href="#" class="editable editable-click" data-id="{$item['id']}" data-name="sort" data-type="text" data-pk="{$item['id']}" data-url="{:url('editable')}">{$item[$vo['field'][0]]}</a>
|
|
</td>
|
|
{else/}
|
|
<td>{$item[$vo['field'][0]]}</td>
|
|
{/if}
|
|
{/volist}
|
|
<td>
|
|
{if isset($item['is_top'])}
|
|
{if $item['is_top']}
|
|
<a href="{:url('admin/paysetting/settop?model_id='.$model_id,array('id'=>$item['id'],'is_top'=>'0'))}" class="ajax-get">取消置顶</a>
|
|
{else/}
|
|
<a href="{:url('admin/paysetting/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/paysetting/status?model_id='.$model_id,array('id'=>$item['id'],'status'=>'0'))}" class="ajax-get">取消审核</a>
|
|
{else/}
|
|
<a href="{:url('admin/paysetting/status?model_id='.$model_id,array('id'=>$item['id'],'status'=>'1'))}" class="ajax-get">审核</a>
|
|
{/if}
|
|
{/if}
|
|
<a href="{:url('admin/paysetting/edit?model_id='.$model_id,array('id'=>$item['id']))}" >编辑</a>
|
|
<a href="{:url('admin/paysetting/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}
|
|
{block name="script"}
|
|
<script type="text/javascript" src="__PUBLIC__/js/bootstrap-editable.min.js"></script>
|
|
<script type="text/javascript">
|
|
$(function(){
|
|
$.fn.editable.defaults.mode = 'popup';
|
|
$.fn.editableform.buttons = '<button type="submit" class="btn btn-success editable-submit btn-mini"><i class="fa fa-check-square-o fa-white"></i></button>' +
|
|
'<button type="button" class="btn editable-cancel btn-mini"><i class="fa fa-times"></i></button>';
|
|
$('.editable').editable();
|
|
})
|
|
</script>
|
|
{/block} |