⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 edit.jsp

📁 管理公司合同
💻 JSP
字号:
<%@ page contentType = "text/html;charset=GBK"%>
<%@ taglib uri="/WEB-INF/tag.tld" prefix="tag" %>
<%@ page import="cn.com.juneng.system.common.COMMON"%>
<%@ page import="cn.com.juneng.system.vo.SysDicKindVOImpl"%>
<link href="<%=request.getContextPath()%>/css/commonPage.css" rel="stylesheet" type="text/css">
<script type='text/javascript' language='JavaScript' src='<%=request.getContextPath()%>/js/COMMON.js'></script>
<script type='text/javascript' language='JavaScript' src='<%=request.getContextPath()%>/js/calendar.js'></script>
<%
	SysDicKindVOImpl vo = (SysDicKindVOImpl)request.getAttribute("VO");
%>
<table >
<tr>
<td class="tHeading"><div align='center'><b>字典种类<%=vo.isReadonly()?"":".编辑"%></b></div></td>
</tr>
<%
if(request.getAttribute("Error")!=null){%>
<tr>
<td ><font color='red'><%=request.getAttribute("Error")%></font></td>
</tr>
<%}%>
</table>
<form name="form1" action="<tag:attr source="ActionUrl" />" method="post">
<input type="hidden" name="readonly" value="<tag:attr source="VO" attr="readonly" />">
<input type="hidden" name="currentPage" value="<tag:attr source="VO" attr="currentPage" />">
<input type="hidden" name="actionType" value="<tag:attr source="VO" attr="actionType" />">
<table <%=COMMON.TABLE_STYLE %> >
	<tr>
		<td class="list_condition_td_title">字典种类</td>
		<td class="list_condition_td_input" ><input type="text" required="true" name="kind" value="<tag:attr source="VO" attr="kind" />"></td>
		<td class="list_condition_td_title">字典名称</td>
		<td class="list_condition_td_input" ><input type="text" required="true" name="name" value="<tag:attr source="VO" attr="name" />"></td>
	</tr>
	<tr>
		<td class="list_condition_td_title">备注说明</td>
		<td class="list_condition_td_input" colspan='3'><textarea name="remark" rows="3" cols="80"><tag:attr source="VO" attr="remark" /></textarea></td>
	</tr>
</table><br>
<%if(!vo.isReadonly()){%><input type=submit value="保存" onclick="return CheckForm(form1)"><%}%>
<input type=button value="返回" onclick='back()'>
</form>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -