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.
130 lines
4.2 KiB
HTML
130 lines
4.2 KiB
HTML
<extend name="Public/base"/>
|
|
|
|
<block name="body">
|
|
<!-- 标题栏 -->
|
|
<div class="main-title">
|
|
<h2>[{$model['title']}] 列表</h2>
|
|
</div>
|
|
<div class="cf">
|
|
<div class="fl">
|
|
<empty name="model.extend">
|
|
<div class="tools">
|
|
<a class="btn" href="{:U('add_source?model='.$model['id'])}">新增</a>
|
|
</div>
|
|
</empty>
|
|
</div>
|
|
<!-- 高级搜索 -->
|
|
<div class="search-form cf" style="margin-left:65%;">
|
|
{:W('Search/game_list')}
|
|
<div class="sleft">
|
|
<input type="text" name="file_name" class="search-input" value="{:I('file_name')}" placeholder="请输入文件名称">
|
|
<a class="sch-btn" href="javascript:;" id="search" url="{:U('Game/source')}"><i class="btn-search"></i></a>
|
|
</div>
|
|
<include file='Search/senior' />
|
|
</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">
|
|
<link href="__STATIC__/datetimepicker/css/datetimepicker.css" rel="stylesheet" type="text/css">
|
|
<php>if(C('COLOR_STYLE')=='blue_color') echo '<link href="__STATIC__/datetimepicker/css/datetimepicker_blue.css" rel="stylesheet" type="text/css">';</php>
|
|
<link href="__STATIC__/datetimepicker/css/dropdown.css" rel="stylesheet" type="text/css">
|
|
<script type="text/javascript" src="__STATIC__/datetimepicker/js/bootstrap-datetimepicker.min.js"></script>
|
|
<script type="text/javascript" src="__STATIC__/datetimepicker/js/locales/bootstrap-datetimepicker.zh-CN.js" charset="UTF-8"></script>
|
|
<script type="text/javascript">
|
|
//导航高亮
|
|
highlight_subnav('{:U('Game/source')}');
|
|
$(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;
|
|
}
|
|
});
|
|
|
|
$('#time-start').datetimepicker({
|
|
format: 'yyyy-mm-dd',
|
|
language:"zh-CN",
|
|
minView:2,
|
|
autoclose:true
|
|
});
|
|
|
|
$('#time-end').datetimepicker({
|
|
format: 'yyyy-mm-dd',
|
|
language:"zh-CN",
|
|
minView:2,
|
|
autoclose:true
|
|
});
|
|
|
|
})
|
|
</script>
|
|
</block>
|