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.
59 lines
1.8 KiB
HTML
59 lines
1.8 KiB
HTML
<extend name="Public/base"/>
|
|
|
|
<block name="body">
|
|
<script type="text/javascript" src="__STATIC__/uploadify/jquery.uploadify.min.js"></script>
|
|
|
|
<div class="cf main-place top_nav_list navtab_list">
|
|
{:W('Index/navigation',array('value'=>'Site/channel'))}
|
|
<h3 class="page_title">快捷菜单管理</h3>
|
|
<p class="description_text"></p>
|
|
</div>
|
|
|
|
<div class="data_list">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>菜单名称</th>
|
|
<th>菜单跳转地址</th>
|
|
<th>菜单图标</th>
|
|
<th>操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<notempty name="list">
|
|
<volist name="list" id="list">
|
|
<tr>
|
|
<td>{$list.id}</td>
|
|
<td>{$list.name}</td>
|
|
<td>{$list.url}</td>
|
|
<td><img src="{$list.icon|get_cover='path'}" style="width: 100px"/></td>
|
|
<td><a href="{:U('promote/shortCutMenuEdit',array('id'=>$list['id']))}">编辑</a></td>
|
|
</tr>
|
|
</volist>
|
|
<else/>
|
|
<td colspan="6" class="text-center">aOh! 暂时还没有内容!</td>
|
|
</notempty>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div class="page">
|
|
{$_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="Site/channel">
|
|
</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">
|
|
//导航高亮
|
|
highlight_subnav('{:U('Site/channel')}');
|
|
</script>
|
|
</block> |