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.
77 lines
3.4 KiB
77 lines
3.4 KiB
<%
|
|
/***************************************************************
|
|
* <p>ProName:LCGrpContESMain.jsp</p>
|
|
* <p>Title:新单管理</p>
|
|
* <p>Description:新单录入(带影像)</p>
|
|
* <p>Copyright:Copyright (c) 2013</p>
|
|
* <p>Company:Sinosoft</p>
|
|
* @author : JingDian
|
|
* @version : 8.0
|
|
* @date : 2014-05-19
|
|
****************************************************************/
|
|
%>
|
|
<html>
|
|
<%@page contentType="text/html;charset=UTF-8" %>
|
|
<%@include file="../common/jsp/UsrCheck.jsp" %>
|
|
<%@page import="com.sinosoft.utility.XssUtil" %>
|
|
<%
|
|
String tEdorAcceptNo = XssUtil.escapeJavaScript(request.getParameter("EdorAcceptNo")); //保全受理号
|
|
String tPrtNo = XssUtil.escapeJavaScript(request.getParameter("PrtNo")); //团体保单号
|
|
String tSrc = "";
|
|
tSrc = "./SealThanInput.jsp";
|
|
tSrc += "?EdorAcceptNo=" + tEdorAcceptNo +"&PrtNo="+tPrtNo;
|
|
|
|
%>
|
|
<html>
|
|
<head>
|
|
<%--<title>新单管理</title>--%><title>LIS</title>
|
|
<script language="javascript">
|
|
var pic_name = new Array();
|
|
var pic_place = 0;
|
|
var viewMode = 1;
|
|
//当用户关闭一个页面时触发 onunload 事件。
|
|
window.onunload = afterInput;
|
|
|
|
function afterInput() {
|
|
try {
|
|
$("body").remove();//释放内存
|
|
} catch (e) {
|
|
}
|
|
}
|
|
</script>
|
|
|
|
</head>
|
|
<frameset name="fraMain" rows="0,0,0,*" frameborder="no" border="1" framespacing="0">
|
|
<frame name="VD" src="../common/cvar/CVarData.jsp">
|
|
<frame name="EX" src="../common/cvar/CExec.jsp">
|
|
<frame name="fraTitle" scrolling="no" noresize src="about:blank">
|
|
|
|
<!-- 主区域:提示语 + 左右图片 + 录入 -->
|
|
<frameset rows="30,50%,*" frameborder="yes" border="2" framespacing="2">
|
|
<!-- 第一行:提示文字 -->
|
|
<frame name="fraHint" scrolling="no" noresize src="about:blank"
|
|
onload="this.contentDocument.write('<div style=\'font-size:14px; font-weight:bold; text-align:center; line-height:30px; background:#f0f8ff; color:#0066cc;\'>左侧为承保环节投保单影像,右侧为保全环节保全影像</div>');"/>
|
|
<!-- 第二行:左右两个影像 -->
|
|
<frameset cols="50%,50%" frameborder="yes" border="1" framespacing="0">
|
|
<%-- <frame id="fraPic" name="fraPic" scrolling="no" noresize--%>
|
|
<%-- src="../es_common/ImageQueryMain.jsp?QueryType=9&showImageGrid=0&BizNoType=12&BizType=G_NB&SubType=21001&BizNo=<%=tPrtNo%>">--%>
|
|
<%-- <frame id="fraPic2" name="fraPic2" scrolling="no" noresize--%>
|
|
<%-- src="../es_common/ImageQueryMain.jsp?QueryType=4&showImageGrid=0&BizNoType=31&BizType=G_POS&SubType=22001&BizNo=<%=tEdorAcceptNo%>">--%>
|
|
|
|
<frame id="fraPic" name="fraPic" scrolling="auto" noresize
|
|
src="../common/EasyScanQuery/EasyScanQuery.jsp?BizNo=<%=tPrtNo%>&QueryType=4&BizNoType=12&BizType=G_NB&SubType=21001">
|
|
<frame id="fraPic2" name="fraPic2" scrolling="auto" noresize
|
|
src="../common/EasyScanQuery/EasyScanQuery.jsp?BizNo=<%=tEdorAcceptNo%>&QueryType=4&BizNoType=31&BizType=G_POS&SubType=22001">
|
|
</frameset>
|
|
|
|
<!-- 第三行:录入界面 -->
|
|
<frame id="fraInterface" name="fraInterface" scrolling="auto" noresize src="<%=tSrc%>">
|
|
</frameset>
|
|
</frameset>
|
|
|
|
<noframes>
|
|
<body bgcolor="#ffffff" onblur="focusMe();">
|
|
</body>
|
|
</noframes>
|
|
|
|
</html>
|
|
|