labelAttributeCatModify.zml 1.3 KB

1234567891011121314151617181920212223242526
  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="labelAttributeCatUpdate.htm" method="post" onSubmit="return validateForm(this);" data-role="z-call-frame">
  7. <input name="attributeCatId" type="hidden" value="${cat.getAttributeCatId()}"/>
  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 item.getIndustryId() == attr.getIndustryId()>selected </#if>>${item.getIndustryName()}</option>
  15. </#for>
  16. </select> <font color=red>&nbsp;*</font>
  17. </td>
  18. </tr>
  19. <tr>
  20. <td>标签属性名称:(64位不定长字符)</td>
  21. <td><input name="attributeCatName" class="z-input ${zmr_color_class} z-w200 z-cyan" type="text" value="${cat.getAttributeCatName()}" maxlength="64"><font color=red>&nbsp;*</font></td>
  22. </tr>
  23. </table>
  24. ${zhiqim_manager_submit()}
  25. </form>
  26. </div>