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.
 
 
 
FZ/lis-module-grp-pa-web/src/main/webapp/g_pos/EdorSimpleDownloadInit.jsp

152 lines
4.2 KiB

<%
/***************************************************************
* <p>ProName:EdorSimpleDownloadInit.jsp</p>
* <p>Title:官网团体保单信息清单下载</p>
* <p>Description:官网团体保单信息清单下载</p>
* <p>Copyright:Copyright (c) 2012</p>
* <p>Company:Sinosoft</p>
* @author : lisy
* @version : 8.0
* @date : 2024-11-08
****************************************************************/
%>
<%
GlobalInput tGI = (GlobalInput)session.getAttribute("GI");
String ManageCom = tGI.ManageCom;
%>
<script language="JavaScript">
/**
* 总函数,初始化整个页面
*/
function initForm()
{
try
{
initInputBox();
}
catch (ex)
{
alert("在 ThirdFileInit.jsp --> initForm 函数中发生异常: 初始化界面错误!");
}
}
/**
* 输入框的初始化
*/
function initInputBox()
{
try
{
document.getElementsByName("ManageCom")[0].value = "<%=ManageCom%>";
showOneCodeName("ComCode", "ManageCom", "ManageComName");
fm.GrpContNo.value="";
fm.EdorNo.value="";
fm.EdorType.value="";
initInsuredOldGrid();
}
catch (ex)
{
alert("在 ThirdFileInit.jsp --> initInputBox 函数中发生异常: 初始化界面错误!");
}
}
// 信息列表的初始化
function initInsuredOldGrid()
{
var iArray = new Array();
try
{
iArray[0]=new Array();
iArray[0][0]="序号"; //列名(此列为顺序号,列名无意义,而且不显示)
iArray[0][1]="30px"; //列宽
iArray[0][2]=30; //列最大值
iArray[0][3]=0; //是否允许输入,1表示允许,0表示不允许
iArray[1]=new Array();
iArray[1][0]="保单号";
iArray[1][1]="120px";
iArray[1][2]=100;
iArray[1][3]=0;
iArray[2]=new Array();
iArray[2][0]="批单号";
iArray[2][1]="120px";
iArray[2][2]=100;
iArray[2][3]=0;
iArray[3]=new Array();
iArray[3][0]="客户号";
iArray[3][1]="120px";
iArray[3][2]=100;
iArray[3][3]=0;
iArray[4]=new Array();
iArray[4][0]="单位名称";
iArray[4][1]="220px";
iArray[4][2]=100;
iArray[4][3]=0;
iArray[5]=new Array();
iArray[5][0]="服务类型";
iArray[5][1]="80px";
iArray[5][2]=100;
iArray[5][3]=0;
iArray[5][21]=2;
iArray[6]=new Array();
iArray[6][0]="生效日期";
iArray[6][1]="80px";
iArray[6][2]=100;
iArray[6][3]=0;
iArray[6][21]=3;
iArray[7]=new Array();
iArray[7][0]="满期日期";
iArray[7][1]="80px";
iArray[7][2]=100;
iArray[7][3]=0;
iArray[8]=new Array();
iArray[8][0]="主险险种";
iArray[8][1]="200px";
iArray[8][2]=150;
iArray[8][3]=0;
iArray[9]=new Array();
iArray[9][0]="保单网上查询状态";
iArray[9][1]="150px";
iArray[9][2]=100;
iArray[9][3]=0;
iArray[10]=new Array();
iArray[10][0]="密码生成日期";
iArray[10][1]="80px";
iArray[10][2]=100;
iArray[10][3]=0;
InsuredOldGrid = new MulLineEnter("fm","InsuredOldGrid");
//这些属性必须在loadMulLine前
InsuredOldGrid.mulLineCount = 0;
InsuredOldGrid.displayTitle = 1;
InsuredOldGrid.locked = 1;
InsuredOldGrid.canSel = 0;
InsuredOldGrid.hiddenPlus = 1;
InsuredOldGrid.hiddenSubtraction = 1;
InsuredOldGrid.loadMulLine(iArray);
}
catch(ex)
{
alert(ex);
}
}
</script>