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.
 
 
 

154 lines
2.9 KiB

<%
/***************************************************************
* <p>ProName:LDUWUserInit.jsp</p>
* <p>Title:核保用户管理</p>
* <p>Description:核保用户管理</p>
* <p>Copyright:Copyright (c) 2012</p>
* <p>Company:Sinosoft</p>
* @author : 张成
* @version : 8.0
* @date : 2014-06-25
****************************************************************/
%>
<script language="JavaScript">
/**
* 初始化界面
*/
function initForm() {
try {
initParam();
initInpBox();
initButton();
initUWUserGrid();
} catch (re) {
i18nAlert("初始化界面错误!", "LIS-01178");
}
}
/**
* 初始化参数
*/
function initParam() {
try {
} catch (re) {
i18nAlert("初始化参数错误!", "LIS-01179");
}
}
/**
* 初始化录入控件
*/
function initInpBox() {
try {
fm.UserCode1.value = "";
fm.UserName1.value = "";
fm.UserCode.value = "";
fm.UserName.value = "";
fm.SupervisorFlag.value = "";
fm.SupervisorName.value = "";
fm.PopedomLevel.value = "";
fm.PopedomLevelName.value = "";
} 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;
}
/**
* 退费信息列表
*/
function initUWUserGrid() {
turnPage1 = new turnPageClass();
var iArray = new Array();
var i = 0;
try {
iArray[i] = new Array();
iArray[i][0] = "序号~No.";
iArray[i][1] = "30px";
iArray[i][2] = 10;
iArray[i++][3] = 0;
iArray[i] = new Array();
iArray[i][0] = "用户编码~UserCode-2";
iArray[i][1] = "30px";
iArray[i][2] = 300;
iArray[i++][3] = 0;
iArray[i] = new Array();
iArray[i][0] = "用户名称~UserName";
iArray[i][1] = "30px";
iArray[i][2] = 300;
iArray[i++][3] = 0;
iArray[i] = new Array();
iArray[i][0] = "核保主管标识编码~UWSUPMarkCode";
iArray[i][1] = "0px";
iArray[i][2] = 300;
iArray[i++][3] = 3;
iArray[i] = new Array();
iArray[i][0] = "核保主管标识~UWSUPMark";
iArray[i][1] = "30px";
iArray[i][2] = 300;
iArray[i++][3] = 0;
iArray[i] = new Array();
iArray[i][0] = "核保级别~UWLevel-1";
iArray[i][1] = "30px";
iArray[i][2] = 300;
iArray[i++][3] = 3;
iArray[i] = new Array();
iArray[i][0] = "核保级别~UWLevel-1";
iArray[i][1] = "40px";
iArray[i][2] = 300;
iArray[i++][3] = 0;
UWUserGrid = new MulLineEnter("fm", "UWUserGrid");
UWUserGrid.mulLineCount = 0;
UWUserGrid.displayTitle = 1;
UWUserGrid.locked = 0;
UWUserGrid.canSel = 1;
UWUserGrid.canChk = 0;
UWUserGrid.hiddenSubtraction = 1;
UWUserGrid.hiddenPlus = 1;
UWUserGrid.selBoxEventFuncName = "showUserInfo";
UWUserGrid.loadMulLine(iArray);
} catch (ex) {
i18nAlert("初始化界面错误!", "LIS-01185");
}
}
</script>