📄 catalog_bottom.jsp
字号:
<%@ page contentType="text/html; charset=utf-8" language="java" import="java.sql.*" errorPage="" %>
<%@ page import="java.io.InputStream" %>
<%@ page import="java.util.*" %>
<%@ page import="cn.js.fan.db.*" %>
<%@ page import="cn.js.fan.util.*" %>
<%@ page import="com.redmoon.forum.plugin.huanke.*" %>
<%@ page import="cn.js.fan.module.pvg.*" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title></title>
<LINK href="../manager/default.css" type=text/css rel=stylesheet>
<script>
function form1_onsubmit() {
form1.type.value = form1.seltype.value;
form1.root_code.value = window.parent.dirmainFrame.getRootCode();
}
function selTemplate(id)
{
if (form1.templateId.value!=id) {
form1.templateId.value = id;
}
}
function enableSelType() {
if (confirm("如果该项中已经含有内容,则更改以后会造成问题,您要强制更改吗?")) {
form1.seltype.disabled = false;
}
}
</script>
</head>
<body>
<jsp:useBean id="privilege" scope="page" class="cn.js.fan.module.pvg.Privilege"/>
<%
if (!privilege.isUserLogin(request))
{
out.println(StrUtil.makeErrMsg(privilege.MSG_INVALID, "red","green"));
return;
}
%>
<%
String parent_code = ParamUtil.get(request, "parent_code");
if (parent_code.equals(""))
parent_code = "root";
String parent_name = ParamUtil.get(request, "parent_name");
String code = ParamUtil.get(request, "code");
String name = ParamUtil.get(request, "name");
String description = ParamUtil.get(request, "description");
String op = ParamUtil.get(request, "op");
boolean isHome = false;
int type = 0;
if (op.equals(""))
op = "AddChild";
Leaf leaf = null;
if (op.equals("modify")) {
Directory dir = new Directory();
leaf = dir.getLeaf(code);
name = leaf.getName();
description = leaf.getDescription();
type = leaf.getType();
isHome = leaf.getIsHome();
}
%>
<TABLE
style="BORDER-RIGHT: #a6a398 1px solid; BORDER-TOP: #a6a398 1px solid; BORDER-LEFT: #a6a398 1px solid; BORDER-BOTTOM: #a6a398 1px solid"
cellSpacing=0 cellPadding=3 width="95%" align=center>
<!-- Table Head Start-->
<TBODY>
<TR>
<TD class=thead style="PADDING-LEFT: 10px" noWrap width="70%">目录增加或修改</TD>
</TR>
<TR class=row style="BACKGROUND-COLOR: #fafafa">
<TD align="center" style="PADDING-LEFT: 10px"><table class="frame_gray" width="415" border="0" cellpadding="0" cellspacing="1">
<tr>
<td width="411" align="center"><table width="98%">
<form name="form1" method="post" action="catalog_top.jsp?op=<%=op%>" target="dirmainFrame" onClick="return form1_onsubmit()">
<tr>
<td width="78" rowspan="7" align="left" valign="top"><br>
当前结点:<br>
<font color=blue><%=parent_name.equals("")?"根结点":parent_name%></font> </td>
<td width="312" align="left"> 编码
<input name="code" value="<%=code%>" <%=op.equals("modify")?"readonly":""%>> </td>
</tr>
<tr>
<td align="left">名称
<input name="name" value="<%=name%>"></td>
</tr>
<tr>
<td align="left">描述
<input name="description" value="<%=description%>">
<input type=hidden name=parent_code value="<%=parent_code%>"> </td>
</tr>
<tr>
<td align="left">
<%
String disabled = "";
if (op.equals("modify") && leaf.getType()>=1)
disabled = "true";
%>
类型:
<select name="seltype">
<option value="0">分类</option>
<option value="1" <%=op.equals("AddChild")?"selected":""%>>换客栏目列表</option>
</select>
<script>
<%if (op.equals("modify")) {%>
form1.seltype.value = "<%=type%>"
<%}%>
form1.seltype.disabled = "<%=disabled%>"
</script>
<input type=hidden name=root_code value="">
<input type=hidden name="type" value="<%=type%>"></td>
</tr>
<tr>
<td align="left"><span class="unnamed2">
<%if (op.equals("modify")) {%>
<script>
var bcode = "<%=leaf.getCode()%>";
</script>
父结点:
<select name="parentCode">
<%
Leaf rootlf = leaf.getLeaf("root");
DirectoryView dv = new DirectoryView(rootlf);
dv.ShowDirectoryAsOptionsWithCode(out, rootlf, rootlf.getLayer());
%>
</select>
<script>
form1.parentCode.value = "<%=leaf.getParentCode()%>";
</script>
( <span class="style3">蓝色</span>表示“无内容”或“列表”项 )
<%}%>
<input type="hidden" name="isHome" value="true">
<input name="templateId" type="hidden" value="-1">
</span></td>
</tr>
<tr>
<td align="center"><input name="Submit" type="submit" class="singleboarder" value="提交">
<input name="Submit" type="reset" class="singleboarder" value="重置">
<input type="button" class="singleboarder" value="强制类型修改" onClick="enableSelType()"></td>
</tr>
</form>
</table></td>
</tr>
</table>
</TD>
</TR>
<!-- Table Body End -->
<!-- Table Foot -->
<TR>
<TD class=tfoot align=right><DIV align=right> </DIV></TD>
</TR>
<!-- Table Foot -->
</TBODY>
</TABLE>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -