📄 showthecompany.jsp
字号:
<%@ page contentType="text/html; charset=GBK" language="java" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic" prefix="logic"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<meta http-equiv="pragma" content="no-cache" />
<meta http-equiv="Cache-Control" content="no-cache, must-revalidate" />
<meta http-equiv="expires" content="Wed, 26 Feb 1970 08:21:57 GMT" />
<link href="${pageContext.request.contextPath}/image/main.css" rel="stylesheet" type="text/css">
<title>集团客户列表</title>
<style type="text/css">
<!--
.STYLE1 {
font-size: 14px;
font-weight: bold;
font-family: "宋体";
}
.STYLE2 {
color: #FFFFFF;
font-weight: bold;
}
.STYLE3 {color: #FF0000}
-->
</style>
</head>
<body>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td align="center" valign="middle"><table width="80%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td height="20" align="center" valign="middle"><span class="STYLE1">集 团 客 户 列 表 </span></td>
</tr>
<tr>
<td height="20" align="right" valign="bottom">
<a href="#" onClick="window.history.back(); return false;">[返 回]</a> </td>
</tr>
</table>
<table width="80%" border="1" cellpadding="0" cellspacing="0" bordercolor="#D71920">
<tr>
<td align="center" valign="middle">
<table width="100%" border="1" cellspacing="0" cellpadding="0" >
<tr>
<td width="33%" height="28" align="center" nowrap background="${pageContext.request.contextPath}/image/newTop_02.jpg"><span class="STYLE2">集团编号</span></td>
<td width="33%" align="center" nowrap background="${pageContext.request.contextPath}/image/newTop_02.jpg">
<span class="STYLE2">集团名称</span></td>
<td width="33%" align="center" nowrap background="${pageContext.request.contextPath}/image/newTop_02.jpg">
<span class="STYLE2">状态</span></td>
</tr>
<logic:empty name="list" scope="request">
<tr><td height="22" colspan="10">
<span class="STYLE3">对不起该名客户经理没有被分配集团用户! </span></td>
</tr>
</logic:empty>
<logic:iterate id="list" name="list" scope="request">
<tr>
<td height="20" align="center" valign="middle" nowrap id="ttc"> ${list.companyid}</td>
<td align="center" valign="middle" nowrap id="ttc"> ${list.companyname}</td>
<td align="center" valign="middle" nowrap id="ttc"> ${list.companystate}</td>
</tr>
</logic:iterate>
</table></td>
</tr>
</table>
<p>${requestScope.pageTool}</p></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -