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.
63 lines
1.3 KiB
63 lines
1.3 KiB
<%
|
|
//程序名称: SealThanInit.jsp
|
|
//程序功能:印章比对
|
|
//创建日期:2021-10-15 10:49:22
|
|
//创建人 :lrh
|
|
//更新记录: 更新人 更新日期 更新原因/内容
|
|
%>
|
|
<script language="JavaScript">
|
|
//接收从工作流保全申请页面传递过来的参数
|
|
function initParam()
|
|
{
|
|
fm.all('EdorAcceptNo').value = mEdorAcceptNo;
|
|
}
|
|
//把null的字符串转为空
|
|
function nullToEmpty(string)
|
|
{
|
|
if ((string == "null") || (string == "undefined"))
|
|
{
|
|
string = "";
|
|
}
|
|
return string;
|
|
}
|
|
|
|
//初始化页面元素
|
|
function initInpBox()
|
|
{
|
|
|
|
try
|
|
{
|
|
|
|
}
|
|
catch(ex)
|
|
{
|
|
alert("在SealThanInit.jsp-->InitInpBox函数中发生异常:初始化界面错误!"+ex);
|
|
}
|
|
}
|
|
//初始化选择框
|
|
function initSelBox()
|
|
{
|
|
try
|
|
{
|
|
|
|
}
|
|
catch(ex)
|
|
{
|
|
alert("在SealThanInit.jsp-->InitSelBox函数中发生异常:初始化界面错误!");
|
|
}
|
|
}
|
|
//页面初始化
|
|
function initForm()
|
|
{
|
|
try
|
|
{
|
|
initParam();
|
|
initData();
|
|
}
|
|
catch(re)
|
|
{
|
|
alert("SealThanInit.jsp-->InitForm函数中发生异常:初始化界面错误!");
|
|
}
|
|
}
|
|
|
|
</script>
|
|
|