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

📄 recomresume.jsp

📁 java阿里巴巴代码
💻 JSP
字号:
<%@ page contentType="text/html;charset=GBK" %>
<%@ page import="com.saas.biz.custMgr.Custinfo" %>
<%@ page import="com.ahbay.commenMgr.*" %>
<%@ page import="javax.servlet.http.*" %>
<%@ page import="java.util.*" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%>
<!--------------------------------推荐招聘------------------------------------------------->
<html> 
	<head>
		<meta name = "Generator" content = "Easy Struts Xslt generator for Eclipse (http://easystruts.sf.net).">
		<title>企业信息化服务平台(http://soft.xsaas.com)</title>
	</head>
<script language="javascript">
  function chechIfo()
  {
	if(confirm('是否确认推荐招聘?')) 
	{
		return true;
	}
	else
	{
		return false;
	}
  }
</script>

<body>
<h1>推荐招聘</h1>
<div class="line6">
                  <div class="img"><img src="/images/icon3_manager_rightbody.gif" /></div><span class="title">推荐招聘</span><br />
                                             1、推荐招聘是将客户的招聘信息推荐给其他求职者。<br />
                                             2、被推荐的客户是具有其他客户没有的特权。                          
                                                                       </div>  
<table width="100%" border="0" cellpadding="2" cellspacing="1" align="center" bgcolor="#e7e7e7">
  <tr>    
    <td class="line1" style="background-color:#e2e2e2; color:#000000;  font-weight:bold; font-size:13px;" align="center" width="7%">序号</td>
    <td style="background-color:#e2e2e2; color:#000000;  font-weight:bold; font-size:13px;"  align="center" width="25%">客户名称</td>
    <td style="background-color:#e2e2e2; color:#000000;  font-weight:bold; font-size:13px;"  align="center" width="20%">联系电话</td>
    <td style="background-color:#e2e2e2; color:#000000;  font-weight:bold; font-size:13px;"  align="center" width="35%">地址</td>
    <td style="background-color:#e2e2e2; color:#000000;  font-weight:bold; font-size:13px;"  align="center" width="10%">操作</td>
  </tr>
<%
    Custinfo	  custEntity=new Custinfo();
    ArrayList custArray = custEntity.getCustListByResume();
	if(custArray != null  && custArray.size()>0)
	{
		int i=0;
		for (Iterator inIt = custArray.iterator(); inIt.hasNext();)
	    {
		    HashMap map = (HashMap) inIt.next();
		    String cust_id="";
		    String cust_name="";
		    String phone="";
		    String cust_addr="";
	   	    cust_id=map.get("cust_id").toString();
	   	    cust_name=map.get("cust_name").toString();
	   	    if(map.get("group_contact_phone")!=null)
	   	    {
	   	      phone=map.get("group_contact_phone").toString();
	   	    }
	   	    if(map.get("company_address")!=null)
	   	    {
	   	      cust_addr=map.get("company_address").toString();
	   	    }
   %>
	<tr style="background-color:#f9f9f9; " id="changcolor_tr<%=cust_id%>" onMouseOver="MM_changeProp('changcolor_tr<%=cust_id%>','','backgroundColor','#ffffff','DIV')" onMouseOut="MM_changeProp('changcolor_tr<%=cust_id%>','','backgroundColor','#f9f9f9','DIV')">
	<td style=" color:#000000;" align="center"><%=String.valueOf(i+1)%></td>
    <td style=" color:#000000;" align="left"><%=cust_name%></td>
    <td style=" color:#000000;" align="left"><%=phone%></td>
     <td style=" color:#000000;" align="center"><%=cust_addr%></td>
	<td style=" color:#000000;" align="center"><a href=/doTradeReg.do?cust_id=<%=cust_id%>&trade_type_code=0331 target="_self"  onClick="return chechIfo()"><img src=/img/edit.gif width=16 height=16 border=0></a></td>
    </tr>
	<%
	   i++;
		}
	}
   %>
   <tr><td   colspan=7 >&nbsp;</td></tr>
</table>
	<body>
</html>

⌨️ 快捷键说明

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