labelAttributeCatAdd.zml 1.1 KB

12345678910111213141516171819202122232425
  1. ${zhiqim_manager_history("/labelAttributeCat.htm")}
  2. ${request.getValidateScript()}
  3. ${zhiqim_manager_breadcrumb_parent("/labelAttributeCat.htm", "标签属性", "增加标签属性")}
  4. <div class="content">
  5. ${zhiqim_manager_title("新增标签属性")}
  6. <form name="theForm" action="labelAttributeCatInsert.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>标签属性名称:(64位不定长字符)</td>
  20. <td><input name="attributeCatName" class="z-input ${zmr_color_class} z-w200 z-cyan" type="text" value="" maxlength="64"><font color=red>&nbsp;*</font></td>
  21. </tr>
  22. </table>
  23. ${zhiqim_manager_submit()}
  24. </form>
  25. </div>