industryModify.zml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <#def designatedPath="/industryList.htm"/>
  2. ${request.getValidateScript()}
  3. ${zhiqim_manager_history("/industryList.htm")}
  4. ${zhiqim_manager_breadcrumb_parent("/industryList.htm", "行业管理", "修改行业")}
  5. ${zhiqim_manager_content()}
  6. <form name="theForm" action="industryUpdate.htm" method="post" onSubmit="return validateForm(this);" data-role="z-call-frame">
  7. <input name="industryId" type="hidden" value="${industry.getIndustryId()}">
  8. <table class="z-table z-bordered z-h50-tr z-pd10 z-bg-white">
  9. <tr class="zi-h40 z-bg-gray z-bold">
  10. <td colspan="2">修改行业</td>
  11. </tr>
  12. <tr>
  13. <td width="40%">行业名称:<span class="z-color-999">(20位不定长字符)</span></td>
  14. <td width="*"><input name="industryName" class="z-input z-w300 ${zmr_color_class}" value="${industry.getIndustryName()}" maxlength="20"><span class="z-color-red">&nbsp;*</span></td>
  15. </tr>
  16. <tr>
  17. <td>行业关键字:<span class="z-color-999">(逗号隔开)</span></td>
  18. <td><textarea name="industryKeywords" class="z-textarea z-w300 z-h120 ${zmr_color_class}" maxlength="5000">${industry.getIndustryKeywords()}</textarea></td>
  19. </tr>
  20. <tr>
  21. <td>状态:<span class="z-color-999">(请选择)</span></td>
  22. <td>
  23. <select name="isEnabled" class="z-select z-w300" data-role="z-select" data-class="${zmr_color_class}">
  24. <option value="true">正常</option>
  25. <option value="false" <#if !industry.isEnabled()>selected</#if>>停用</option>
  26. </select><span class="z-color-red">&nbsp;*</span>
  27. </td>
  28. </tr>
  29. <tr>
  30. <td>序号:<span class="z-color-999">(填数字)</span></td>
  31. <td><input name="industrySeq" class="z-input z-w300 ${zmr_color_class}" data-options="type:Decimal;paste:true;" value="${industry.getIndustrySeq()}" maxlength="6"></td>
  32. </tr>
  33. </table>
  34. ${zhiqim_manager_submit()}
  35. </form>
  36. ${zhiqim_manager_content_end()}