You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
3.3 KiB
HTML
106 lines
3.3 KiB
HTML
<extend name="Public/base"/>
|
|
|
|
<block name="body">
|
|
<!-- 标题栏 -->
|
|
<div class="main-title">
|
|
<h2>[{$model['title']}] 列表</h2>
|
|
</div>
|
|
<div class="cf">
|
|
<!-- 高级搜索 -->
|
|
<div class="search-form fr cf">
|
|
<div class="sleft">
|
|
<input type="text" name="game_appid" class="search-input" value="{:I('game_appid')}" placeholder="请输入APPID">
|
|
</div>
|
|
<div class="sleft">
|
|
<input type="text" name="game_name" class="search-input" value="{:I('game_name')}" placeholder="请输入游戏名称">
|
|
<a class="sch-btn" href="javascript:;" id="search" url="{:U('Game/lists','model='.$model['name'],false)}"><i class="btn-search"></i></a>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<!-- 数据列表 -->
|
|
<div class="data-table">
|
|
<div class="data-table table-striped">
|
|
<table>
|
|
<!-- 表头 -->
|
|
<thead>
|
|
<tr>
|
|
<th style="text-align:center" class="row-selected row-selected">
|
|
<input class="check-all" type="checkbox">
|
|
</th>
|
|
<volist name="list_grids" id="field">
|
|
<th style="text-align:center">{$field.title}</th>
|
|
</volist>
|
|
</tr>
|
|
</thead>
|
|
|
|
<!-- 列表 -->
|
|
<tbody>
|
|
<volist name="list_data" id="data">
|
|
<tr>
|
|
<td style="border-right:1px solid #DDDDDD;text-align:center"><input class="ids" type="checkbox" value="{$data['id']}" name="ids[]"></td>
|
|
<volist name="list_grids" id="grid">
|
|
<td style="border-right:1px solid #DDDDDD;text-align:center">{:get_list_field($data,$grid)}</td>
|
|
</volist>
|
|
</tr>
|
|
</volist>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<div class="page">
|
|
{$_page|default=''}
|
|
</div>
|
|
</block>
|
|
|
|
<block name="script">
|
|
<script type="text/javascript">
|
|
//导航高亮
|
|
highlight_subnav('{:U('Game/update')}');
|
|
$(function(){
|
|
//搜索功能
|
|
$("#search").click(function(){
|
|
var url = $(this).attr('url');
|
|
var query = $('.search-form').find('input').serialize();
|
|
query = query.replace(/(&|^)(\w*?\d*?\-*?_*?)*?=?((?=&)|(?=$))/g,'');
|
|
query = query.replace(/^&/g,'');
|
|
if( url.indexOf('?')>0 ){
|
|
url += '&' + query;
|
|
}else{
|
|
url += '?' + query;
|
|
}
|
|
window.location.href = url;
|
|
});
|
|
|
|
//回车自动提交
|
|
$('.search-form').find('input').keyup(function(event){
|
|
if(event.keyCode===13){
|
|
$("#search").click();
|
|
}
|
|
});
|
|
|
|
//点击排序
|
|
$('.list_sort').click(function(){
|
|
var url = $(this).attr('url');
|
|
var ids = $('.ids:checked');
|
|
var param = '';
|
|
if(ids.length > 0){
|
|
var str = new Array();
|
|
ids.each(function(){
|
|
str.push($(this).val());
|
|
});
|
|
param = str.join(',');
|
|
}
|
|
|
|
if(url != undefined && url != ''){
|
|
|
|
window.location.href = url.replace(".html","") + '/ids/' + param;
|
|
}
|
|
});
|
|
|
|
})
|
|
</script>
|
|
</block>
|