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

41 lines
2.0 KiB
Plaintext
Raw Permalink Blame History

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="/category.htm"/>
${request.getValidateScript()}
${zhiqim_manager_history ("category.htm")}
${zhiqim_manager_breadcrumb_parent ("category.htm", "知识库分类", "修改分类")}
${zhiqim_manager_content()}
<form name="theForm" action="categoryUpdate.htm" method="post" onsubmit="return validateForm(this);" data-role="z-call-frame">
<input name="categoryId" type="hidden" value="${category.getCategoryId()}">
<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">(自定义)</span></td>
<td width="*">${category.getCategoryId()}</td>
</tr>
<tr>
<td>上级分类:<span class="z-color-999">32位不定长字符)</span></td>
<td>${parent.getCategoryName()}</td>
</tr>
<tr>
<td>分类名称:<span class="z-color-999">32位不定长字符)</span></td>
<td><input name="categoryName" class="z-input z-w300 ${zmr_color_class}" value="${category.getCategoryName()}" maxlength="32"><span class="z-color-red">&nbsp;*</span></td>
</tr>
<tr>
<td>分类状态:<span class="z-color-999">(请选择)</span></td>
<td>
<select name="categoryStatus" class="z-select z-w300 ${zmr_color_class}" data-role="z-select" data-class="${zmr_color_class}">
<option <#if category.getCategoryStatus() == 0>selected</#if> value="0">正常</option><option <#if category.getCategoryStatus() == 1>selected</#if> value="1">停用</option>
</select><span class="z-color-red">&nbsp;*</span>
</td>
</tr>
<tr>
<td>分类排序数:<span class="z-color-999">(填整型)</span></td>
<td><input name="categorySeq" class="z-input z-w300 ${zmr_color_class}" data-options="type:Integer;" value="${category.getCategorySeq()}" maxlength="8"><span class="z-color-red">&nbsp;*</span></td>
</tr>
</table>
${zhiqim_manager_submit()}
</form>
${zhiqim_manager_content_end()}