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

📄 jobinfo.jsp

📁 java阿里巴巴代码
💻 JSP
📖 第 1 页 / 共 2 页
字号:
<!DOCTYPE HTML PUBLIC "-/W3C/DTD HTML 4.01 Transitional/EN"
"http:/www.w3.org/TR/html4/loose.dtd">
<%@ page contentType="text/html;charset=GBK"%>
<%@ page import="java.util.*"%>
<%@ page import="com.saas.biz.custMgr.Custinfo"%>
<%@ page import="com.saas.biz.JobMgr.JobInfo"%>
<%@ page import="com.saas.biz.ordercastMgr.OrderCast"%>
<%@ page import="com.saas.biz.AreaInfoMgr.AreaInfo"%>
<%
	String cust_id = "";
	String iStart = "1";
	String s_id = "";
	String province = "";

	HttpSession logsession = request.getSession();

	if (request.getParameter("iStart") != null) {
		iStart = request.getParameter("iStart");
	}
	if (request.getParameter("cust_id") != null) {
		cust_id = request.getParameter("cust_id");
	}
	s_id = (String) logsession.getAttribute("SESSION_USER_ID");

	OrderCast oc = new OrderCast();
	Custinfo custinfo = new Custinfo();
	AreaInfo area = new AreaInfo();
	province = area.getCountrySelect("5J2mc0X0G85BH");
%>
<html>
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
		<title>人才详细页</title>
		<style type="text/css">
<!--
body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}

#login {
	position: relative;
	display: none;
	top: 20px;
	left: 30px;
	background-color: #ffffff;
	text-align: center;
	border: solid 1px;
	padding: 10px;
	z-index: 1;
}
-->
</style>
		<link href="/zone_b2b/css/css.css" rel="stylesheet" type="text/css" />
		<script type="text/javascript" src="/js/prototype.js"></script>
		<script type="text/javascript" src="/zone_b2b/supply/inquiry.js"></script>
		<script type='text/javascript' src='/dwr/interface/AreaInfo.js'></script>
		<script type='text/javascript' src='/dwr/engine.js'></script>
		<script type='text/javascript' src='/dwr/util.js'></script>
		<script language="javascript">
// 设置城市信息
function setCityInfo(prov_id) {
	if (prov_id != "0") {
		AreaInfo.getAreaByParent(prov_id, function(data) {
			DWRUtil.removeAllOptions("city_l");
			var fectureArray = new Array();
			fectureArray = ['地市信息..'];
			DWRUtil.addOptions("city_l", fectureArray);
			DWRUtil.addOptions("city_l", data);
		});
	} else {
		DWRUtil.removeAllOptions("city_l");
		var fectureArray = new Array();
		fectureArray = ['地市信息..'];
		DWRUtil.addOptions("city_l", fectureArray);
	}
}
//检测关键字
function checkKey_Word(){
	var pub_key=$F("job_key");
	alert(pub_key);
}

//开始搜索
function searchJob(){
	alert("开始搜索");
}
</script>
	</head>
	<body>
		<jsp:include flush="true" page="/zone_b2b/top.html" />
		<table width="980" height="10" border="0" align="center" cellpadding="0" cellspacing="0">
			<tr>
				<td></td>
			</tr>
		</table>
		<table width="980" border="0" align="center" cellpadding="0" cellspacing="0">
			<tr>
				<td width="260" valign="top">
					<table width="100%" border="0" cellspacing="0" cellpadding="0">
						<tr>
							<td height="8"></td>
						</tr>
					</table>
					<table width="100%" border="0" cellspacing="0" cellpadding="0">
						<tr>
							<td width="2">
								<img src="/zone_b2b/images/ba_105.gif" width="2" height="29" alt="">
							</td>
							<td align="center" background="/zone_b2b/images/ba_106.gif">
								<table width="96%" border="0" cellspacing="0" cellpadding="0">
									<tr>
										<td width="5%">
											<img src="/zone_b2b/images/lujian.gif" width="5" height="9" />
										</td>
										<td width="78%" class="btlanse">
											招聘排名
										</td>
										<!--td width="17%"><a href="#" class="lanse">更多&gt;&gt;</a></td-->
									</tr>
								</table>
							</td>
							<td width="2">
								<img src="/zone_b2b/images/ba_109.gif" width="2" height="29" alt="">
							</td>
						</tr>
					</table>
					<table width="100%" border="0" cellpadding="2" cellspacing="1" bgcolor="9BBDD3">
						<tr>
							<td height="200" valign="top" bgcolor="#FFFFFF">
								<!--//重复-->
								<%
									ArrayList rec_list = oc.getRecommendJobAll(0, 5);

									if (rec_list != null && rec_list.size() > 0) {
										for (int i = 0; i < rec_list.size(); i++) {
											HashMap map = (HashMap) rec_list.get(i);
											String title = "";
											String cust_name = "";
											String end_date = "";
											String custId = "";
											if (map.get("job_unit") != null) {
										custId = map.get("job_unit").toString();
											}
											if (map.get("title") != null) {
										title = map.get("title").toString();
											}
											if (map.get("cust_name") != null) {
										cust_name = map.get("cust_name").toString();
											}
											if (map.get("end_date") != null) {
										end_date = map.get("end_date").toString();
											}
											if (end_date.length() > 10) {
										end_date = end_date.substring(0, 10);
											}
								%>
								<div class="rencei_table_xian" height="180%">
									·
									<a href="/zone_b2b/enterprise/customer/<%=custId%>/" class="lanse"><%=cust_name%></a>
									<br>
									<span class="zi"><a href="jobinfo.jsp?cust_id=<%=custId%>" target=_blank class="lanse"><%=title%></a>|<%=end_date%></span>
									<%
										}
										}
									%>
								
							</td>
						</tr>
					</table>
					<table width="100%" border="0" cellspacing="0" cellpadding="0">
						<tr>
							<td height="8"></td>
						</tr>
					</table>
					<table width="100%" border="0" cellspacing="0" cellpadding="0">
						<tr>
							<td width="2">
								<img src="/zone_b2b/images/ba_105.gif" width="2" height="29" alt="">
							</td>
							<td align="center" background="/zone_b2b/images/ba_106.gif">
								<table width="96%" border="0" cellspacing="0" cellpadding="0">
									<tr>
										<td width="5%">
											<img src="/zone_b2b/images/lujian.gif" width="5" height="9" />
										</td>
										<td width="78%" class="btlanse">
											推荐企业
										</td>
										<!--td width="17%"><a href="#" class="lanse">更多&gt;&gt;</a></td-->
									</tr>
								</table>
							</td>
							<td width="2">
								<img src="/zone_b2b/images/ba_109.gif" width="2" height="29" alt="">
							</td>
						</tr>
					</table>
					<table width="100%" border="0" cellpadding="8" cellspacing="1" bgcolor="9BBDD3">
						<tr>
							<td height="210" valign="top" bgcolor="#FFFFFF">
								<%
											ArrayList list = custinfo.getCustNewById(Integer.parseInt(iStart),
											5);
									if (list != null && list.size() > 0) {
										for (int i = 0; i < list.size(); i++) {
											HashMap map = (HashMap) list.get(i);
											String cust_id1 = "";
											String cust_name = "";
											if (map.get("cust_id") != null) {
										cust_id1 = map.get("cust_id").toString();
											}
											if (map.get("cust_name") != null) {
										cust_name = map.get("cust_name").toString();
											}
								%>
								<!--//重复-->
								<div class="rencei_table_xian" height="180%">
									·
									<a href="/zone_b2b/enterprise/customer/<%=cust_id1%>/" class="lanse"><%=cust_name%></a>
								</div>
								<!--重复//-->
								<%
									}
									}
								%>
							</td>
						</tr>
					</table>
				</td>
				<td valign="top">
					&nbsp;
				</td>
				<td width="710" valign="top">
					<table width="100%" border="0" cellpadding="4" cellspacing="1" bgcolor="DBECF4">
						<tr>
							<td height="26" valign="top" background="/zone_b2b/images/xian4.gif" bgcolor="#FFFFFF">
								您当前的位置:
								<a href="/zone_b2b" class="lanse">首页</a> &gt;
								<a href="/zone_b2b/talents" class="lanse">人才</a> &gt;

⌨️ 快捷键说明

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