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/GRPPStateInit.jsp

62 lines
1.1 KiB

<%@page import="com.sinosoft.lis.pubfun.*"%>
<%
//添加页面控件的初始化。
GlobalInput globalInput = (GlobalInput)session.getAttribute("GI");
if(globalInput == null) {
out.println("session has expired");
return;
}
String strOperator = globalInput.Operator;
String operatorComCode = globalInput.ComCode;
%>
<%
//添加页面控件的初始化。
%>
<script language="JavaScript">
function initInpBox()
{
try
{
fm.ManageCom.value='<%=operatorComCode%>';
fm.operatorComCode.value='<%=operatorComCode%>';
fm.StartDay.value='';
fm.EndDay.valule='';
}
catch(ex)
{
alert("在GRPPStateInit.jsp-->InitInpBox函数中发生异常:初始化界面错误!");
}
}
function initSelBox()
{
try
{
}
catch(ex)
{
alert("在GRPPStateInit.jsp-->InitSelBox函数中发生异常:初始化界面错误!");
}
}
function initForm()
{
try
{
initInpBox();
initSelBox();
}
catch(re)
{
alert("GRPPStateInit.jsp-->InitForm函数中发生异常:初始化界面错误!");
}
}
</script>