| 1234567891011121314151617181920212223242526 |
- <#include "/ztmpl/zhiqim_manager/"+themeMain+"/define.htm"/>
- <table class="z-table z-bordered z-pd6 z-bg-white z-text-center">
- <tr class="z-h40">
- <td align="left" colspan="4" class="z-bold z-px14 fi-pd-l5"><input name="industryId" id="industryId" value="${industryId}" type="hidden"/>[<span class="z-text-blue">${Global.get(DesignIndustryCache.class).getIndustryName(industryId)}</span>] 的子行业信息</td>
- </tr>
- <tr class="z-text-center z-h40" bgcolor="${zmr_thead_bgcolor}">
- <td width="5%">选择</td>
- <td width="20%">子行业名称</td>
- <td width="15%">创建时间</td>
- </tr>
- <#for item : result>
- <tr align="center" class="z-h40" ${zhiqim_manager_tr_onmouse()} ${zhiqim_manager_tr_click_radio()}>
- <td><input name="industrySubId" id="industrySubId" data-role="z-radio" data-class="${zmr_color_class}" type="radio" value="${item.getIndustrySubId()}"></td>
- <td>${item.getIndustrySubName()}</td>
- <td>${Sqls.toDateTimeString(item.getCreateTime())}</td>
- </tr>
- </#for>
- <#if result.size() == 0>
- ${zhiqim_manager_no_record(4 "暂时没有相关信息")}
- </#if>
- </table>
- <table class="z-table z-bordered fi-bd-t-none z-pd6 z-bg-white">
- <tr class="z-h40">
- <td align="right">共 <font color="red">${result.size()}</font> 条数据</td>
- </tr>
- </table>
|