industrySubInfo.zml 1.3 KB

1234567891011121314151617181920212223242526
  1. <#include "/ztmpl/zhiqim_manager/"+themeMain+"/define.htm"/>
  2. <table class="z-table z-bordered z-pd6 z-bg-white z-text-center">
  3. <tr class="z-h40">
  4. <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>
  5. </tr>
  6. <tr class="z-text-center z-h40" bgcolor="${zmr_thead_bgcolor}">
  7. <td width="5%">选择</td>
  8. <td width="20%">子行业名称</td>
  9. <td width="15%">创建时间</td>
  10. </tr>
  11. <#for item : result>
  12. <tr align="center" class="z-h40" ${zhiqim_manager_tr_onmouse()} ${zhiqim_manager_tr_click_radio()}>
  13. <td><input name="industrySubId" id="industrySubId" data-role="z-radio" data-class="${zmr_color_class}" type="radio" value="${item.getIndustrySubId()}"></td>
  14. <td>${item.getIndustrySubName()}</td>
  15. <td>${Sqls.toDateTimeString(item.getCreateTime())}</td>
  16. </tr>
  17. </#for>
  18. <#if result.size() == 0>
  19. ${zhiqim_manager_no_record(4 "暂时没有相关信息")}
  20. </#if>
  21. </table>
  22. <table class="z-table z-bordered fi-bd-t-none z-pd6 z-bg-white">
  23. <tr class="z-h40">
  24. <td align="right">共 <font color="red">${result.size()}</font> 条数据</td>
  25. </tr>
  26. </table>