why.xingtongworld.com项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

56 lines
1.9 KiB

{extend name="admin@public/base" /}
{block name="main-content"}
<div class="page-content">
<div class="row maintop">
<div class="col-xs-5 col-sm-2 margintop5">
<a href="{:url('admin/menu/news_menu_add')}">
<button class="btn btn-sm btn-danger">
<i class="ace-icon fa fa-bolt bigger-110"></i>
添加
</button>
</a>
</div>
</div>
{if condition="config('lang_switch_on')"}
<form name="admin_list_sea" class="form-search form-horizontal" id="list-filter" method="post" action="{:url('admin/Menu/news_menu_list')}">
<div class="row maintop">
<div class="col-xs-12 col-sm-12">按语言刷选:
<select name="menu_l" class="ajax_change">
<option value="">按语言</option>
<option value="zh-cn" {if condition="$menu_l eq 'zh-cn'"}selected="selected"{/if}>中文</option>
<option value="en-us" {if condition="$menu_l eq 'en-us'"}selected="selected"{/if} >英语</option>
</select>
</div>
</div>
</form>
{/if}
<div class="row">
<div class="col-xs-12">
<div>
<form class="ajaxForm2" name="leftnav" method="post" action="{:url('admin/Menu/news_menu_order',['lang_list'=>$menu_l])}" >
<table id="dynamic-table" class="table table-striped table-bordered table-hover">
<thead>
<tr>
<th>排序</th>
<th>ID</th>
<th>类型</th>
<th>菜单标题</th>
<th>模型</th>
{if condition="config('lang_switch_on')"}
<th>语言</th>
{/if}
<th>显示状态</th>
<th style="border-right:#CCC solid 1px;">操作</th>
</tr>
</thead>
<tbody id="ajax-data">
{include file="menu/ajax_news_menu_list"/}
</tbody>
</table>
</form>
</div>
</div>
</div>
</div><!-- /.page-content -->
{/block}