📄 system_category_detail.jsp
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<%@ taglib uri="/vnex.tld" prefix="vnex" %>
<%@ taglib uri="/vnex_system.tld" prefix="sys" %>
<%@ taglib uri="/vnex_organization.tld" prefix="org" %>
<HTML><jsp:include page="/vnex/page/FORM_HEAD.jsp" />
<script language="Javascript">
function dosubmit()
{
if (form1.categoryName.value == "")
{
alert("目录名称不能为空!");
form1.categoryName.focus();
return false;
}
if (form1.categoryName.value.length > 10)
{
alert("目录名称不能大于10!");
form1.categoryName.focus();
return false;
}
form1.action="/mainctrl/system/categoryModify";
form1.submit();
}
</script>
<STYLE>
#ssm2 A {
FONT-SIZE: 12px; COLOR: black; FONT-FAMILY: verdana; TEXT-DECORATION: none
}
#ssm2 A:hover {
COLOR: red
}
</STYLE>
<BODY text=#000000 vLink=#000000 aLink=#000000 link=#000000 bgColor=#ffffff topMargin=20 leftmargin="0" marginwidth="0" marginheight="0">
<script language="JavaScript1.2" src="/vnex/menu/dockmenu_system.js"></script>
<script language="JavaScript1.2" src="/vnex/menu/dockmenu.js"></script>
<DIV align=center>
<form name="form1" method="post" >
<TABLE class=outter cellSpacing=0 cellPadding=0 width=600 border=0>
<TBODY>
<jsp:include page="/vnex/page/TTOA_TABLE_TOP.jsp" />
<TR>
<TD colSpan=3 align="center" class="iframestyle" valign="top"> <!--菜单开始 -->
<br>
<table width="600" border="1" cellspacing="1" bordercolor="#666666">
<tr valign="top" bgcolor="#fafafa">
<td height="178" >
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td bgcolor="#fafafa">
<table class=title cellpadding="2" cellspacing="1" border="0" width="600">
<tr>
<td colspan="2" bgcolor="#666666">
<!--
<font class="strongw"> <org:OrganizationNaviBar level="1"/> <a href="/mainctrl/system/categoryList"><font color="#ffffff">系统类别设置维护</font></a>>>
修改系统类别设置</font>
-->
<font class="strongw">
<a href="/mainctrl/home/index"><font color="#ffffff">首页</font></a>>>
<a href="/mainctrl/system/main"><font color="#ffffff">系统管理</font></a>>>
<a href="/mainctrl/system/categoryList"><font color="#ffffff">数据字典管理</font></a>>>修改系统类别设置</font>
</td>
</tr>
<sys:CategoryList categoryId='<%= request.getParameter("categoryId") %>' withChildren="no">
<vnex:items>
<tr bgcolor="#e0e0e0">
<td width="30%" align="left"> <font class="strong"> 编号:</font></td>
<td width="70%" align="left"> <sys:CategoryAttribute attribute="id"/>
<input type="hidden" name="categoryId" value='<sys:CategoryAttribute attribute="id"/>'> </td>
</tr>
<tr bgcolor="#fafafa">
<td width="30%" align="left"><font class="strong"> 父分类:</font></td>
<td width="70%" align="left">
<select name= "parentId">
<sys:CategoryList categoryId='<%= request.getParameter("categoryId") %>' withChildren="remove" noLeaf="yes">
<vnex:items select='<%= request.getParameter("parentId") %>'>
<option value="<sys:CategoryAttribute attribute="id"/>"
<sys:CategoryAttribute attribute="isSelected"/>
> <sys:CategoryAttribute attribute="levelStr"/>+<sys:CategoryAttribute attribute="name"/>
</option>
</vnex:items> </sys:CategoryList>
</select>
</td>
</tr>
<tr bgcolor="#e0e0e0">
<td width="30%" align="left"><font class="strong"> 名称:</font></td>
<td width="70%" align="left">
<input type="text" name="categoryName" size="20" value='<sys:CategoryAttribute attribute="name"/>' class="text">
* (注:带*为必填内容)
</td>
</tr>
<tr bgcolor="#fafafa">
<td width="30%" align="left"><font class="strong"> 是否叶子:</font></td>
<td width="70%" align="left">
<select name="isLeaf"><option value="0"
<sys:CategoryAttribute attribute="isLeafSelected" isLeafFlag="0" /> >否</option> <option value="1"
<sys:CategoryAttribute attribute="isLeafSelected" isLeafFlag="1" /> >是</option>
</select>
</td>
</tr>
<tr bgcolor="#e0e0e0">
<td width="30%" align="left"><font class="strong"> 创建者名称:</font></td>
<td width="70%" align="left"> <sys:CategoryAttribute attribute="creatorName"/>
</td>
</tr>
<tr bgcolor="#fafafa">
<td width="30%" align="left"><font class="strong"> 创建时间:</font></td>
<td width="70%" align="left"> <sys:CategoryAttribute attribute="createDate"/>
</td>
</tr>
<tr bgcolor="#fafafa">
<td colspan="2" height="30" align="center">
<input type="button" value="保存" name="B1" class="text" onclick="dosubmit()">
<input type="button" value="返回" name="B2" onClick="location='/mainctrl/system/categoryList'" class="text">
</td>
</tr>
</vnex:items> </sys:CategoryList>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
<br>
<br>
<jsp:include page="/vnex/page/TTOA_HELP.jsp" />
</TD>
</TR>
<jsp:include page="/vnex/page/TTOA_TABLE_BOTTOM.jsp" />
</TBODY>
</TABLE>
<BR>
<jsp:include page="/vnex/page/TTOA_PRODUCER_LOGO.jsp" />
</form>
</DIV>
</BODY>
</HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -