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

📄 showlist.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">
<!--
.STYLE3 {
	font-size: 16px;
	color: #FF0000;
}
.STYLE4 {color: #FFFFFF}
.STYLE1 {	font-size: 14px;
	font-weight: bold;
	font-family: "宋体";
}
-->
    </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="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>
                  <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"> 
					无任何要审核的潜在集团</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;${groupbean.companyid}
					  </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.companystate}</td>
                      <td height="22" align="center" nowrap id="ttc">
					  &nbsp;${groupbean.deputy}</td>
                      <td height="22" align="center" nowrap id="ttc">
                     <html:link action="/latencyGroup?task=tocheckup&nid=${groupbean.nid}"> 
					审核 
	  				</html:link>
					  </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 + -