first commit
This commit is contained in:
@@ -0,0 +1,64 @@
|
||||
${zhiqim_manager_breadcrumb("标签属性")}
|
||||
${zhiqim_manager_content()}
|
||||
|
||||
<#-- 导航栏 -->
|
||||
<div class="z-tabnav-main z-blue z-mg-b20">
|
||||
<nav>
|
||||
<ul>
|
||||
<li onclick="Z.Location.href('labelIndustry.htm');">标签行业</li>
|
||||
<li onclick="Z.Location.href('labelAttributeCat.htm');">标签属性</li>
|
||||
<li class="z-active">标签属性值</li>
|
||||
<!--
|
||||
<li onclick="Z.Location.href('labelBrand.htm');">标签品牌</li>
|
||||
-->
|
||||
</ul>
|
||||
<div class="z-float-left z-mg10 z-lh30">
|
||||
<form name="theForm">
|
||||
<select name="industryId" id="industryId" class="z-select z-w100 z-float-left" data-role="z-select" data-class="${zmr_color_class}" onchange="Z.L.href('/labelAttribute.htm?industryId=' + this.value)">
|
||||
<option value="">全部</option>
|
||||
<#for item : industryList>
|
||||
<option value="${item.getIndustryId()}" <#if item.getIndustryId() == industryId>selected </#if>>${item.getIndustryName()}</option>
|
||||
</#for>
|
||||
</select>
|
||||
<button class="z-float-left z-button z-w80 zi-bd-rd0 z-blue"><i class="z-font z-query"></i>查询</button>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<div class="z-text-right z-mg-t10 z-mg-r5">
|
||||
<button class="z-button ${zmr_color_class}" onclick="Z.Location.href('labelAttributeAdd.htm');"><i class="z-font z-add"></i>添加标签属性值</button>
|
||||
<button class="z-button ${zmr_color_class}" onclick="Z.Location.check('labelAttributeModify.htm', 'attributeId');"><i class="z-font z-modify"></i>修改标签属性值</button>
|
||||
<button class="z-button z-red" onclick="Z.Location.confirm('labelAttributeDelete.htm', '确认要删除该标签吗?', 'attributeId');"><i class="z-font z-delete"></i>删除标签属性值</button>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
<table class="z-table z-bordered z-bg-white z-pd6">
|
||||
<tr>
|
||||
<td class="z-h40 z-text-left z-bold z-px14 z-bg-white" colspan="4"> 标签属性值列表</td>
|
||||
</tr>
|
||||
<tr class="z-text-center z-h40" bgcolor="${zmr_thead_bgcolor}">
|
||||
<td width="5%">选择</td>
|
||||
<td width="20%">行业名称</td>
|
||||
<td width="20%">属性名称</td>
|
||||
<td width="20%">属性值名称</td>
|
||||
<td width="15%">创建时间</td>
|
||||
</tr>
|
||||
<#if pageResult.total() == 0>
|
||||
${zhiqim_manager_no_record(4 "暂时没有标签属性信息")}
|
||||
</#if>
|
||||
<#for item : pageResult.list()>
|
||||
<tr align="center" class="z-h40" ${zhiqim_manager_tr_onmouse()} ${zhiqim_manager_tr_click_radio()}>
|
||||
<td><input name="attributeId" id="attributeId" data-role="z-radio" data-class="${zmr_color_class}" type="radio" value="${item.getAttributeId()}"></td>
|
||||
<td>
|
||||
<#for industry : industryList>
|
||||
<#if item.getIndustryId() == industry.getIndustryId()>${industry.getIndustryName()} </#if>
|
||||
</#for>
|
||||
</td>
|
||||
<td>${LabelPresenter.doAttributeCatName(item.getAttributeCatId())}</td>
|
||||
<td>${item.getAttributeName()}</td>
|
||||
<td>${Sqls.toDateTimeString(item.getCreateTime())}</td>
|
||||
</tr>
|
||||
</#for>
|
||||
</table>
|
||||
${zhiqim_manager_paging(pageResult, "/labelAttribute.htm")}
|
||||
${zhiqim_manager_content_end()}
|
||||
Reference in New Issue
Block a user