| 12345678910111213141516171819202122232425 |
- ${zhiqim_manager_history("/labelIndustry.htm")}
- ${request.getValidateScript()}
- ${zhiqim_manager_breadcrumb_parent("/labelIndustry.htm", "标签行业", "增加标签行业")}
- <div class="content">
- ${zhiqim_manager_title("新增标签行业")}
- <form name="theForm" action="labelIndustryInsert.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>子行业名称:(逗号隔开)</td>
- <td><textarea name="industrySubName" class="z-textarea z-w60p ${zmr_color_class}" cols=60 rows=4 size="30" maxlength="5000"></textarea><font color=red> *</font></td>
- </tr>
- </table>
- ${zhiqim_manager_submit()}
- </form>
- </div>
|