labelIndustryModify.zml 1.3 KB

1234567891011121314151617181920212223242526
  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="labelIndustryUpdate.htm" method="post" onSubmit="return validateForm(this);" data-role="z-call-frame">
  7. <input name="industrySubId" type="hidden" value="${industry.getIndustrySubId()}"/>
  8. <table class="z-table z-bordered z-pd6 z-bg-white">
  9. <tr>
  10. <td width="40%">标签行业:(请选择)</td>
  11. <td width="*">
  12. <select name="industryId" class="z-select z-w200" data-role="z-select" data-class="${zmr_color_class}">
  13. <#for item : indList>
  14. <option value="${item.getIndustryId()}" <#if industry.getIndustryId() == item.getIndustryId() >selected</#if>>${item.getIndustryName()}</option>
  15. </#for>
  16. </select><font color=red>&nbsp;*</font>
  17. </td>
  18. </tr>
  19. <tr>
  20. <td>子行业名称:(5000位不定长字符)</td>
  21. <td><input name="industrySubName" class="z-input ${zmr_color_class} z-w200 z-cyan" type="text" maxlength="64" value="${industry.getIndustrySubName()}"/><font color=red>&nbsp;*</font></td>
  22. </tr>
  23. </table>
  24. ${zhiqim_manager_submit()}
  25. </form>
  26. </div>