📄 categorymanageparlist.jsp
字号:
<%@ page contentType="text/html; charset=utf-8" language="java" import="java.util.*,com.test.ps.category.*" pageEncoding="UTF-8"%>
<%
ArrayList<GoodsCategory> gcList=CategoryAction.getGoodsCategory();
Iterator<GoodsCategory> i=gcList.iterator();
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<LINK href="../img/adminStyle.css" type=text/css rel=stylesheet>
<style type="text/css">
.STYLE2 {font-weight: bold}
</style>
</head>
<body>
<table width="80%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="80" colspan="3">
<jsp:include page="../adminTop.jsp" flush="true"/></td>
</tr>
<tr>
<td colspan="3" height="30" bgcolor="#e6f3ff"><span class="STYLE2 STYLE2"><a href="../adminRight.jsp">首页</a>>修改品牌</span></td>
</tr>
<tr>
<td colspan="3" height="30"><hr size="5" color="#e6f3ff" /></td>
</tr>
<tr>
<td height="30"><h1>品牌列表</h1></td>
</tr>
<tr>
<td height="30" valign="top">
<table width="95%" border="0" align="center" cellpadding="0" cellspacing="3">
<tr bgcolor="#CBEDFE">
<td height="30" colspan="4"><div align="left"><a href="categoryForm.jsp?isDis=true&categoryNameValue=&parentCateValue=0" target="_self"></a></div></td>
</tr>
<%while(i.hasNext()){
GoodsCategory category=(GoodsCategory)i.next();
%>
<tr height="80">
<td width="25%" bgcolor="#F8FCFC"><div align="center"><%=category.getCategoryName()%></div></td>
<td width="25%" bgcolor="#F8FCFC"><div align="center"><a href="categoryManageSonList.jsp?parId=<%=category.getCategoryId()%>">修改该品牌下型号</a></div></td>
<td width="25%" bgcolor="#F8FCFC"><div align="center">
<a href="categoryForm.jsp?isDis=true&categoryNameValue=<%=category.getCategoryName()%>&parentCateValue=0&cateId=<%=category.getCategoryId()%>" target="_self">
修改品牌</a></div></td>
<td width="25%" bgcolor="#F8FCFC"><div align="center"><a href="categoryDel.jsp?cateId=<%=category.getCategoryId()%>&type=par" onclick="return confirm('删除品牌将会删除其下所以子类别,确实要删除该品牌吗?')">删除品牌</a></div></td>
</tr>
<tr>
<td colspan="4" height="3"><hr size="1" color="#5B889D"/></td>
</tr>
<%
}%>
</table>
</td>
</tr>
<tr>
<td><hr align="left" size="10" noshade color="#318EB7"></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -