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.
129 lines
4.0 KiB
129 lines
4.0 KiB
<!-- $Id: articlecat_list.htm 17020 2010-01-29 10:18:24Z liuhui $ -->
|
|
{if $full_page}
|
|
{include file="pageheader.htm"}
|
|
{insert_scripts files="../js/utils.js,listtable.js"}
|
|
|
|
<form method="post" action="" name="listForm">
|
|
<!-- start ad position list -->
|
|
<div class="list-div" id="listDiv">
|
|
{/if}
|
|
|
|
<table width="100%" cellspacing="0" cellpadding="0" id="list-table">
|
|
<tr>
|
|
<th>{$lang.cat_name}</th>
|
|
<th>{$lang.type}</th>
|
|
<th>{$lang.cat_desc}</th>
|
|
<th>{$lang.sort_order}</th>
|
|
<th>{$lang.show_in_nav}</th>
|
|
<th>{$lang.handler}</th>
|
|
</tr>
|
|
{foreach from=$articlecat item=cat}
|
|
<tr align="center" class="{$cat.level}{if $cat.level neq 0} hide{/if}" id="{$cat.level}_{$cat.cat_id}">
|
|
<td align="left" class="first-cell nowrap" valign="top" >
|
|
{if $cat.is_leaf neq 1}
|
|
<img src="images/menu_plus.png" id="icon_{$cat.level}_{$cat.cat_id}" width="9" height="9" border="0" style="margin-left:{$cat.level}em" onclick="rowClicked(this)" />
|
|
{else}
|
|
<img src="images/menu_arrow.gif" width="9" height="9" border="0" style="margin-left:{$cat.level}em" />
|
|
{/if}
|
|
<span><a href="article.php?act=list&cat_id={$cat.cat_id}">{$cat.cat_name|escape}</a></span>
|
|
</td>
|
|
<td class="nowrap" valign="top">
|
|
{$cat.type_name|escape}
|
|
</td>
|
|
<td align="left" valign="top">
|
|
{$cat.cat_desc|escape}
|
|
</td>
|
|
<td width="10%" align="right" class="nowrap" valign="top"><span onclick="listTable.edit(this, 'edit_sort_order', {$cat.cat_id})">{$cat.sort_order}</span></td>
|
|
<td width="10%" class="nowrap" valign="top"><img src="images/{if $cat.show_in_nav eq '1'}yes{else}no{/if}.gif" onclick="listTable.toggle(this, 'toggle_show_in_nav', {$cat.cat_id})" /></td>
|
|
<td width="24%" align="right" class="nowrap" valign="top">
|
|
<a href="articlecat.php?act=edit&id={$cat.cat_id}">{$lang.edit}</a>
|
|
{if $cat.cat_type neq 2 and $cat.cat_type neq 3 and $cat.cat_type neq 4}|
|
|
<a href="javascript:;" onclick="listTable.remove({$cat.cat_id}, '{$lang.drop_confirm}')" title="{$lang.remove}">{$lang.remove}</a>
|
|
{/if}
|
|
</td>
|
|
</tr>
|
|
{/foreach}
|
|
</table>
|
|
|
|
{if $full_page}
|
|
</div>
|
|
</form>
|
|
|
|
{literal}
|
|
<script language="JavaScript">
|
|
<!--
|
|
|
|
onload = function()
|
|
{
|
|
// 开始检查订单
|
|
startCheckOrder();
|
|
}
|
|
|
|
var imgPlus = new Image();
|
|
imgPlus.src = "images/menu_plus.png";
|
|
|
|
/**
|
|
* 折叠分类列表
|
|
*/
|
|
function rowClicked(obj)
|
|
{
|
|
// 当前图像
|
|
img = obj;
|
|
// 取得上二级tr>td>img对象
|
|
obj = obj.parentNode.parentNode;
|
|
// 整个分类列表表格
|
|
var tbl = document.getElementById("list-table");
|
|
// 当前分类级别
|
|
var lvl = parseInt(obj.className);
|
|
// 是否找到元素
|
|
var fnd = false;
|
|
var sub_display = img.src.indexOf('menu_minus.png') > 0 ? 'none' : (Browser.isIE) ? 'block' : 'table-row' ;
|
|
// 遍历所有的分类
|
|
for (i = 0; i < tbl.rows.length; i++)
|
|
{
|
|
var row = tbl.rows[i];
|
|
if (row == obj)
|
|
{
|
|
// 找到当前行
|
|
fnd = true;
|
|
//document.getElementById('result').innerHTML += 'Find row at ' + i +"<br/>";
|
|
}
|
|
else
|
|
{
|
|
if (fnd == true)
|
|
{
|
|
var cur = parseInt(row.className);
|
|
var icon = 'icon_' + row.id;
|
|
if (cur > lvl)
|
|
{
|
|
row.style.display = sub_display;
|
|
if (sub_display != 'none')
|
|
{
|
|
var iconimg = document.getElementById(icon);
|
|
iconimg.src = iconimg.src.replace('plus.gif', 'minus.gif');
|
|
}
|
|
}
|
|
else
|
|
{
|
|
fnd = false;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
for (i = 0; i < obj.cells[0].childNodes.length; i++)
|
|
{
|
|
var imgObj = obj.cells[0].childNodes[i];
|
|
if (imgObj.tagName == "IMG" && imgObj.src != 'images/menu_arrow.gif')
|
|
{
|
|
imgObj.src = (imgObj.src == imgPlus.src) ? 'images/menu_minus.png' : imgPlus.src;
|
|
}
|
|
}
|
|
}
|
|
//-->
|
|
</script>
|
|
{/literal}
|
|
|
|
{include file="pagefooter.htm"}
|
|
{/if}
|