| 12345678910111213141516171819202122232425 |
- ${zhiqim_manager_history("/labelAttributeCat.htm")}
- ${request.getValidateScript()}
- ${zhiqim_manager_breadcrumb_parent("/labelAttributeCat.htm", "标签属性", "增加标签属性")}
- <div class="content">
- ${zhiqim_manager_title("新增标签属性")}
- <form name="theForm" action="labelAttributeCatInsert.htm" method="post" onSubmit="return validateForm(this);" data-role="z-call-frame">
- <table class="z-table z-bordered z-pd6 z-bg-white">
- <tr>
- <td width="40%">标签行业:(请选择)</td>
- <td width="*">
- <select name="industryId" class="z-select z-w200" data-role="z-select" data-class="${zmr_color_class}">
- <#for item : indList>
- <option value="${item.getIndustryId()}">${item.getIndustryName()}</option>
- </#for>
- </select> <font color=red> *</font>
- </td>
- </tr>
- <tr>
- <td>标签属性名称:(64位不定长字符)</td>
- <td><input name="attributeCatName" class="z-input ${zmr_color_class} z-w200 z-cyan" type="text" value="" maxlength="64"><font color=red> *</font></td>
- </tr>
- </table>
- ${zhiqim_manager_submit()}
- </form>
- </div>
|