|
|
|
|
<extend name="Public/base"/>
|
|
|
|
|
|
|
|
|
|
<block name="body">
|
|
|
|
|
<!-- 标题栏 -->
|
|
|
|
|
<div class="cf main-place top_nav_list navtab_list">
|
|
|
|
|
<h3 class="page_title">{$meta_title}</h3>
|
|
|
|
|
<p class="description_text">说明:设置相关链接的显示方式。</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="cf">
|
|
|
|
|
<div class="fl">
|
|
|
|
|
<empty name="model.extend">
|
|
|
|
|
<div class="fl button_list">
|
|
|
|
|
<a class="" href="{:U('add?model='.$model['id'])}"><span class="button_icon button_icon1"></span>新 增</a>
|
|
|
|
|
<a class="ajax-post confirm" target-form="ids" url="{:U('del?model='.$model['id'])}"><span class="button_icon button_icon2"></span>删 除</a>
|
|
|
|
|
</div>
|
|
|
|
|
</empty>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 数据列表 -->
|
|
|
|
|
<div class="data_list">
|
|
|
|
|
<div class="">
|
|
|
|
|
<table>
|
|
|
|
|
<!-- 表头 -->
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th class="row-selected row-selected">
|
|
|
|
|
<input class="check-all" type="checkbox">
|
|
|
|
|
</th>
|
|
|
|
|
<volist name="list_grids" id="field">
|
|
|
|
|
<th>{$field.title}</th>
|
|
|
|
|
</volist>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
|
|
|
|
|
<!-- 列表 -->
|
|
|
|
|
<tbody>
|
|
|
|
|
<volist name="list_data" id="data">
|
|
|
|
|
<tr>
|
|
|
|
|
<td><input class="ids" type="checkbox" value="{$data['id']}" name="ids[]"></td>
|
|
|
|
|
<volist name="list_grids" id="grid">
|
|
|
|
|
<td>{:get_list_field($data,$grid,$model)}</td>
|
|
|
|
|
</volist>
|
|
|
|
|
</tr>
|
|
|
|
|
</volist>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="page">
|
|
|
|
|
<a class="sch-btn" href="{:U('Export/selfbuilt_list',array_merge(['xlsname'=>'游戏管理_自建官网'],I('get.')))}">导出</a>
|
|
|
|
|
{$_page|default=''}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="common_settings">
|
|
|
|
|
<span class="plus_icon"><span><img src="__IMG__/zwmimages/icon_jia.png"></span></span>
|
|
|
|
|
<form class="addShortcutIcon">
|
|
|
|
|
<input type="hidden" name="title" value="{$m_title}">
|
|
|
|
|
<input type="hidden" name="url" value="Selfbuilt/index">
|
|
|
|
|
</form>
|
|
|
|
|
<a class="ajax-post add-butn <notempty name='commonset'>addSIsetted</notempty>" href="javascript:;" target-form="addShortcutIcon" url="{:U('Think/addShortcutIcon')}"><img src="__IMG__/zwmimages/icon_jia.png"><span><notempty name='commonset'>已添加<else />添加至常用设置</notempty></span></a>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</block>
|
|
|
|
|
|
|
|
|
|
<block name="script">
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
Think.setValue('row','{:I("row",10)}');
|
|
|
|
|
$(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();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
//导航高亮
|
|
|
|
|
highlight_subnav('{:U('Selfbuilt/index')}');
|
|
|
|
|
</script>
|
|
|
|
|
</block>
|