56 خطوط
1.9 KiB
Plaintext
56 خطوط
1.9 KiB
Plaintext
<script>
|
|
Z.onload(function()
|
|
{
|
|
var industryId = '${industryId}';
|
|
if (industryId != -1)
|
|
doIndustrySubQuery(industryId);
|
|
});
|
|
|
|
function doIndustrySubQuery(industryId)
|
|
{
|
|
var ajax = new Z.Ajax();
|
|
ajax.setClassName("LabelPresenter");
|
|
ajax.setMethodName("doIndustrySubQuery");
|
|
ajax.addParam(industryId);
|
|
ajax.setCallback("result");
|
|
ajax.setLoading("result");
|
|
ajax.execute();
|
|
}
|
|
</script>
|
|
|
|
${zhiqim_manager_breadcrumb("标签行业")}
|
|
${zhiqim_manager_content()}
|
|
<#-- 导航栏 -->
|
|
<div class="z-tabnav-main z-blue z-mg-b20">
|
|
<nav>
|
|
<ul>
|
|
<li class="z-active">标签行业</li>
|
|
<li onclick="Z.Location.href('labelAttributeCat.htm');">标签属性</li>
|
|
<li onclick="Z.Location.href('labelAttribute.htm');">标签属性值</li>
|
|
</ul>
|
|
<div class="z-text-right z-mg-t10 z-mg-r5">
|
|
<button class="z-button ${zmr_color_class}" onclick="Z.Location.href('/labelIndustryAdd.htm');"><i class="z-font z-add"></i>增加标签行业</button>
|
|
<button class="z-button ${zmr_color_class}" onclick="Z.Location.check('labelIndustryModify.htm', 'industrySubId');"><i class="z-font z-modify"></i>修改标签行业</button>
|
|
<button class="z-button z-red" onclick="Z.Location.confirm('labelIndustryDelete.htm', '确认要删除该标签行业吗?', 'industrySubId');"><i class="z-font z-delete"></i>删除标签行业</button>
|
|
</div>
|
|
</nav>
|
|
</div>
|
|
|
|
<table class="z-table">
|
|
<tr>
|
|
<td width="300" valign="top">
|
|
<table class="z-table z-bordered z-pd6 z-bg-white z-text-center">
|
|
<tr class="z-h40" bgcolor="${zmr_thead_bgcolor}"><td>标签导航</td></tr>
|
|
<#for item : indList>
|
|
<tr align="center" class="z-h40" bgcolor="${zhiqim_manager_tr_bg(item_index)}">
|
|
<td><a href="javascript:doIndustrySubQuery('${item.getIndustryId()}');">${item.getIndustryName()}</a></td>
|
|
</tr>
|
|
</#for>
|
|
</table>
|
|
</td>
|
|
<td width="10"></td>
|
|
<td width="*" id="result" valign="top">
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
${zhiqim_manager_content_end()} |