40 lines
1.4 KiB
Plaintext
40 lines
1.4 KiB
Plaintext
<#def designatedPath="/works/materialCatList.htm"/>
|
|
${request.getValidateScript()}
|
|
<script>
|
|
|
|
</script>
|
|
${zhiqim_manager_history ("/works/materialContList.htm")}
|
|
|
|
${zhiqim_manager_breadcrumb_parent ("/works/materialContList.htm", "素材管理", "修改素材")}
|
|
|
|
<div class="content">
|
|
${zhiqim_manager_title ("修改素材")}
|
|
|
|
<form name="theForm" action="/works/materialContUpdate.htm" method="post">
|
|
<input type="hidden" name="mid" value="${item.getMid()}">
|
|
<table class="z-table z-bordered z-pd6 z-bg-white">
|
|
<tr class="z-h40">
|
|
<td>素材状态:</td>
|
|
<td>
|
|
<select name="materialStatus" data-role="z-select" class="z-select z-w200" style="visibility: hidden; margin: 0px;" >
|
|
<option value="0" <#if item.getMaterialStatus()==0>selected</#if>>正常</option>
|
|
<option value="1" <#if item.getMaterialStatus()==1>selected</#if>>停用</option>
|
|
</select>
|
|
<font class="z-color-red"> *</font></td>
|
|
</tr>
|
|
<tr class="z-h40" >
|
|
<td width="30%">关键字(多个可空格分隔):</td>
|
|
<td width="*">
|
|
<input name="keywords" input class="z-input z-w200 ${zmr_color_class}" value="${item.getKeywords()}">
|
|
<font class="z-color-red"> *</font></td>
|
|
</tr>
|
|
<tr class="z-h40" >
|
|
<td width="30%">序号:</td>
|
|
<td width="*">
|
|
<input name="materialSeq" input class="z-input z-w200 ${zmr_color_class}" value="${item.getMaterialSeq()}">
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
${zhiqim_manager_submit()}
|
|
</form>
|
|
</div> |