Files
2025-02-20 14:58:55 +08:00

37 baris
1.8 KiB
Plaintext

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<#def designatedPath="/industryList.htm"/>
${request.getValidateScript()}
${zhiqim_manager_history("/industryList.htm")}
${zhiqim_manager_breadcrumb_parent("/industryList.htm", "行业管理", "修改行业")}
${zhiqim_manager_content()}
<form name="theForm" action="industryUpdate.htm" method="post" onSubmit="return validateForm(this);" data-role="z-call-frame">
<input name="industryId" type="hidden" value="${industry.getIndustryId()}">
<table class="z-table z-bordered z-h50-tr z-pd10 z-bg-white">
<tr class="zi-h40 z-bg-gray z-bold">
<td colspan="2">修改行业</td>
</tr>
<tr>
<td width="40%">行业名称:<span class="z-color-999">20位不定长字符)</span></td>
<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>
</tr>
<tr>
<td>行业关键字:<span class="z-color-999">(逗号隔开)</span></td>
<td><textarea name="industryKeywords" class="z-textarea z-w300 z-h120 ${zmr_color_class}" maxlength="5000">${industry.getIndustryKeywords()}</textarea></td>
</tr>
<tr>
<td>状态:<span class="z-color-999">(请选择)</span></td>
<td>
<select name="isEnabled" class="z-select z-w300" data-role="z-select" data-class="${zmr_color_class}">
<option value="true">正常</option>
<option value="false" <#if !industry.isEnabled()>selected</#if>>停用</option>
</select><span class="z-color-red">&nbsp;*</span>
</td>
</tr>
<tr>
<td>序号:<span class="z-color-999">(填数字)</span></td>
<td><input name="industrySeq" class="z-input z-w300 ${zmr_color_class}" data-options="type:Decimal;paste:true;" value="${industry.getIndustrySeq()}" maxlength="6"></td>
</tr>
</table>
${zhiqim_manager_submit()}
</form>
${zhiqim_manager_content_end()}