| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <#def designatedPath="/works/materialCatList.htm"/>
- ${request.getValidateScript()}
- ${zhiqim_manager_history ("/works/materialCatList.htm")}
- ${zhiqim_manager_breadcrumb_parent ("/works/materialCatList.htm", "分类管理", "修改分类")}
- <div class="content">
- ${zhiqim_manager_title ("修改分类")}
- <form name="theForm" action="/works/materialCatUpdate.htm" method="post" onSubmit="return validateForm(this);">
- <input type="hidden" name="catId" value="${item.getCatId()}">
- <table class="z-table z-bordered z-pd6 z-bg-white">
- <tr class="z-h40" >
- <td width="30%">分类编号:</td>
- <td width="*">${item.getCatId()}</td>
- </tr>
- <tr class="z-h40" >
- <td width="30%">状态:</td>
- <td width="*">
- <select name="catStatus" class="z-select z-w200" data-role="z-select" data-class="${zmr_color_class}" >
- <option value="0" <#if item.getCatStatus()==0>selected</#if>>正常</option>
- <option value="1" <#if item.getCatStatus()==1>selected</#if>>停用</option>
- </select>
- </td>
- </tr>
- <tr class="z-h40" >
- <td width="30%">分类名称:</td>
- <td width="*">
- <input name="catName" input class="z-input z-w200 ${zmr_color_class}" value="${item.getCatName()}" maxlength="20">
- <font color=red>*</font></td>
- </tr>
- <tr class="z-h40" >
- <td width="30%">序号:</td>
- <td width="*">
- <input name="catSeq" input class="z-input z-w200 ${zmr_color_class}" value="${item.getCatSeq()}" maxlength="5">
- <font color=red>*</font></td>
- </tr>
- </table>
- ${zhiqim_manager_submit()}
- </form>
- </div>
|