You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.8 KiB

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ page import="org.wdk.WDKConstant"%>
<%@ page import="org.wdk.WDKCore"%>
<%@ page import="org.wdk.WDK"%>
<%@ page import="com.noblelift.imp.platform.module.portal.source.SessionUser"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + path + "/";
String WDK_ROOT = WDKCore.WDK_ROOT;
SessionUser su = (SessionUser)WDK.getSessionUser(request, response);
WDK.writeSessionUser(out, su);
%>
<!DOCTYPE html>
<html>
<head>
<base href="<%=basePath%>" target="_self">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="renderer" content="webkit">
<title>立信中山自动仓储管理系统</title>
<script type="text/javascript" src="<%=WDK_ROOT%>/theme/je/core/js/wdk.js"></script>
<style type="text/css">
.home_bg{
position:fixed;
top:1px;
bottom:1px;
left:10px;
right:0;
overflow-y:auto;
overflow-x:hidden;
}
.home_bg img{
border:0px;
}
</style>
<script type="text/javascript">
$(function(){
});
function opentodo(){
var url = 'products/imp/crm/todo/todo.jsp';
var menuid='FD2D7EB5BC9D45BA862857DAFA323253';
var title='我的待办';
parent.openmenu(menuid,title,url);
}
</script>
</head>
<body style="width:100%;height:100%;overflow: hidden;">
<div class="home_bg">
<img usemap="#planetmap" src="wdk/theme/je/frame/default/images/bg_home.png">
<map name="planetmap" id="planetmap">
<area shape="rect" coords="0,0,390,340" href ="javascript:void(0);" onclick="opentodo()" alt="我的待办" />
</map>
</div>
</body>
</html>