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.
88 lines
1.5 KiB
88 lines
1.5 KiB
<%
|
|
/***************************************************************
|
|
* <p>ProName:EdorNCDetailInit.jsp</p>
|
|
* <p>Title: 方案明细一览</p>
|
|
* <p>Description: 方案明细一览</p>
|
|
* <p>Copyright:Copyright (c) 2012</p>
|
|
* <p>Company:Sinosoft</p>
|
|
* @author : JingDian
|
|
* @version : 8.0
|
|
* @date : 2014-07-16
|
|
****************************************************************/
|
|
%>
|
|
<script language="JavaScript">
|
|
var OnPage = 1;//当前显示的页数
|
|
var RowNum = 0;//记录的总数
|
|
var PageNum = 0;//记录的总页数
|
|
var StartNum = 1;//页面显示起始记录数
|
|
var strQueryResult;
|
|
|
|
/**
|
|
* 初始化界面
|
|
*/
|
|
function initForm() {
|
|
|
|
try {
|
|
|
|
initParam();
|
|
initInpBox();
|
|
initButton();
|
|
|
|
if(initContPlanDetailPageInfo(tPolicyNo,tEdorNo,tEdorType)){
|
|
showContPlanDetail(fm, strQueryResult,StartNum, tContPlanType);
|
|
}
|
|
|
|
} catch (re) {
|
|
i18nAlert("初始化界面错误!", "LIS-01178");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 初始化参数
|
|
*/
|
|
function initParam() {
|
|
|
|
try {
|
|
|
|
} catch (re) {
|
|
i18nAlert("初始化参数错误!", "LIS-01179");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 初始化录入控件
|
|
*/
|
|
function initInpBox() {
|
|
|
|
try {
|
|
|
|
} catch (ex) {
|
|
i18nAlert("初始化录入控件错误!", "LIS-01180");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 初始化按钮
|
|
*/
|
|
function initButton() {
|
|
|
|
try {
|
|
|
|
} catch (ex) {
|
|
i18nAlert("初始化按钮错误!", "LIS-01186");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 把null的字符串转为空
|
|
*/
|
|
function nullToEmpty(string) {
|
|
|
|
if ((string=="null")||(string=="undefined")) {
|
|
string = "";
|
|
}
|
|
|
|
return string;
|
|
}
|
|
|
|
</script>
|
|
|