| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- ${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 class="z-active">标签属性</li>
- <li onclick="Z.Location.href('labelAttribute.htm');">标签属性值</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('/labelAttributeCat.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('/labelAttributeCatAdd.htm');"><i class="z-font z-add"></i>增加标签属性</button>
- <button class="z-button ${zmr_color_class}" onclick="Z.Location.check('/labelAttributeCatModify.htm', 'attributeCatId');"><i class="z-font z-modify"></i>修改标签属性</button>
- <button class="z-button z-red" onclick="Z.Location.confirm('/labelAttributeCatDelete.htm', '确认要删除标签属性分类?', 'attributeCatId');"><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="5%">创建时间 </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="attributeCatId" id="attributeCatId" data-role="z-radio" data-class="${zmr_color_class}" type="radio" value="${item.getAttributeCatId()}"></td>
- <td>
- <#for industry : industryList>
- <#if item.getIndustryId() == industry.getIndustryId()>${industry.getIndustryName()} </#if>
- </#for>
- </td>
- <td>${item.getAttributeCatName()}</td>
- <td>${Sqls.toDateTimeString(item.getCreateTime())}</td>
- </tr>
- </#for>
- </table>
- ${zhiqim_manager_paging(pageResult, "/labelAttributeCat.htm")}
- ${zhiqim_manager_content_end()}
|