category_leaves_list.jsp
资源名称:NetOffice.rar [点击查看]
上传用户:guhaomin
上传日期:2007-06-10
资源大小:23203k
文件大小:3k
源码类别:
电子政务应用
开发平台:
Java
- <%@ taglib uri="/vnex.tld" prefix="vnex" %>
- <%@ taglib uri="/vnex_system.tld" prefix="sys" %>
- <%@ page import="com.vnex.intranet.system.value.CategoryValueBean" %>
- <jsp:useBean id="cl" scope="request" class="com.vnex.intranet.system.loader.CategoryLoader" />
- <%
- CategoryValueBean bean = cl.getByName("固定资产");
- if(bean == null)
- {
- out.println("<script language=JavaScript>");
- out.println("alert('请先设置好固定资产分类结构')");
- out.println("history.back()");
- out.println("</script>");
- }
- String categoryId = bean.getId()+"";
- String pageName = "/mainctrl/categoryLeavesList?pageName=" + request.getParameter("pageName");
- %>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
- <HTML><jsp:include page="/vnex/page/FORM_HEAD.jsp" />
- <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_office.js"></script>
- <script language="JavaScript1.2" src="/vnex/menu/dockmenu.js"></script>
- <DIV align=center>
- <form name="form1" method="post" action="">
- <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"><br>
- <table width="600" border="1" cellspacing="1" bordercolor="#666666">
- <tr>
- <td bgcolor="#fafafa">
- <table class=title cellspacing=1 cellpadding=2 border=0 width="600">
- <tr>
- <td colspan="2" bgcolor="#666666">
- <div align="left"><font class="strongw"><a href="/mainctrl/home/index"><font color="#FFFFFF">首页</font></a>>><a href="/mainctrl/office/main"><font color="#FFFFFF">办公室管理</font></a>>><a href="/mainctrl/equipmentSearchResult"><font color="#FFFFFF">固定资产管理</font></a>>>固定资产分类</div>
- </td>
- </tr>
- <tr align="center">
- <td width="30%"><font class="strong">分类编号</font></td>
- <td width="70%"><font class="strong">分类名称</font></td>
- </tr>
- <sys:CategoryList categoryId="<%=categoryId%>" withChildren="yes">
- <vnex:items>
- <tr bgColor="<vnex:itemsColor/>">
- <td width="30%" align="center"><a href=<%=request.getParameter("pageName")%>?fromSelf=1&categoryId=<sys:CategoryAttribute attribute = "id"/>&categoryName=<sys:CategoryAttribute attribute = "name"/>>
- <sys:CategoryAttribute attribute = "idWhenIsLeaf"/></a><br>
- </td>
- <td width="70%" align=left><sys:CategoryAttribute attribute="levelStr"/>+<sys:CategoryAttribute attribute = "name"/><br>
- </td>
- </tr>
- </vnex:items>
- </sys:CategoryList>
- <tr bgcolor="#fafafa">
- <td colspan="2" align="center">
- <input type="button" name="Button322" value="返回" class="file" onclick="history.back()">
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <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>