⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 potentialcompany.jsp

📁 自己制作的联通CRM,支持客户分类,管理,升级,积分管理等等..
💻 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">
<!--
.STYLE4 {color: #FFFFFF}
.STYLE1 {	font-size: 14px;
	font-weight: bold;
	font-family: "宋体";
}
.STYLE5 {color: #FF0000}
-->
    </style>
</head>
<body>
<html:form action="/latencyGroup" styleId="form1">
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
  <tr>
    <td height="30" align="center" valign="top"><span class="STYLE1">潜 在 集 团 信 息   列 表</span></td>
  </tr>
</table>


  <table width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr>
      <td align="right"><a href="#" onClick="window.history.back(); return false;">[返 回]</a></td>
    </tr>
  </table>
  <table width="100%" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#D71920">
    <tr>
      <td align="center" valign="middle"><table width="100%" border="0" cellpadding="0" cellspacing="0">
          <tr align="center" valign="middle">
            <td width="92%"><table width="100%" height="86" border="1" cellpadding="0" cellspacing="0">
                <tr>
                  <td height="20" align="center" valign="middle" nowrap background="${pageContext.request.contextPath}/image/newTop_02.jpg"><span class="STYLE4">集团编号</span></td>
                  <td width="0" height="20" align="center" valign="middle" nowrap background="${pageContext.request.contextPath}/image/newTop_02.jpg"><span class="STYLE4">集团名称</span></td>
                  <td width="0" height="20" align="center" valign="middle" nowrap background="${pageContext.request.contextPath}/image/newTop_02.jpg"><span class="STYLE4">行业类别</span></td>
                  <td width="0" height="20" align="center" valign="middle" nowrap background="${pageContext.request.contextPath}/image/newTop_02.jpg"><span class="STYLE4">企业级别</span></td>
                  <td width="0" height="20" align="center" valign="middle" nowrap background="${pageContext.request.contextPath}/image/newTop_02.jpg"><span class="STYLE4">企业地址</span></td>
                  <td width="0" height="20" align="center" valign="middle" nowrap background="${pageContext.request.contextPath}/image/newTop_02.jpg"><span class="STYLE4">客户经理</span></td>
                  <td width="0" height="20" align="center" valign="middle" nowrap background="${pageContext.request.contextPath}/image/newTop_02.jpg"><span class="STYLE4">企业法人</span></td>
                </tr>
                <logic:empty name="grouplist" scope="request">
                  <tr>
                    <td height="22" colspan="10" align="center"> 
					 <logic:empty name="grouplist" scope="request"><span class="STYLE5">
						对不起无任何潜在集团记录
				    </span></logic:empty>				</td>
                  </tr>
                </logic:empty>
                <logic:notEmpty name="grouplist" scope="request">
                  <c:forEach var="groupbean" items="${requestScope.grouplist}">
                    <tr>
                      <td height="22" align="center" nowrap id="ttc">&nbsp;
					  	<html:link action="/allotCompany?tag=showdetail&nid=${groupbean.nid}">
							${groupbean.companyid}		
						</html:link>
					 </td>
                      <td height="22" align="center" nowrap id="ttc">&nbsp;${groupbean.companyname}</td>
                      <td height="22" align="center" nowrap id="ttc">&nbsp;${groupbean.callingtype}</td>
                      <td height="22" align="center" nowrap id="ttc">&nbsp;${groupbean.companylevel}</td>
                      <td height="22" align="center" nowrap id="ttc">&nbsp;${groupbean.address}</td>
                      <td height="22" align="center" nowrap id="ttc">&nbsp;${groupbean.servicemanager}</td>
                      <td height="22" align="center" nowrap id="ttc">&nbsp;${groupbean.deputy}</td>
                    </tr>
                  </c:forEach>
                </logic:notEmpty>
              </table>		    </td>
      </table>	  </td>
    </tr>
  </table>
  ${pageTool}</html:form>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -