labelIndustryAdd.zml 1.1 KB

12345678910111213141516171819202122232425
  1. ${zhiqim_manager_history("/labelIndustry.htm")}
  2. ${request.getValidateScript()}
  3. ${zhiqim_manager_breadcrumb_parent("/labelIndustry.htm", "标签行业", "增加标签行业")}
  4. <div class="content">
  5. ${zhiqim_manager_title("新增标签行业")}
  6. <form name="theForm" action="labelIndustryInsert.htm" method="post" onSubmit="return validateForm(this);" data-role="z-call-frame">
  7. <table class="z-table z-bordered z-pd6 z-bg-white">
  8. <tr>
  9. <td width="40%">标签行业:(请选择)</td>
  10. <td width="*">
  11. <select name="industryId" class="z-select z-w200" data-role="z-select" data-class="${zmr_color_class}">
  12. <#for item : indList>
  13. <option value="${item.getIndustryId()}">${item.getIndustryName()}</option>
  14. </#for>
  15. </select><font color=red>&nbsp;*</font>
  16. </td>
  17. </tr>
  18. <tr>
  19. <td>子行业名称:(逗号隔开)</td>
  20. <td><textarea name="industrySubName" class="z-textarea z-w60p ${zmr_color_class}" cols=60 rows=4 size="30" maxlength="5000"></textarea><font color=red>&nbsp;*</font></td>
  21. </tr>
  22. </table>
  23. ${zhiqim_manager_submit()}
  24. </form>
  25. </div>