29 lines
972 B
Plaintext
29 lines
972 B
Plaintext
<%@ page contentType="text/html; charset=GBK"%>
|
|
<%@ include file="/Frame/resources/include/include_begin.jspf"%>
|
|
<%
|
|
String PG_TITLE = "系统警示信息";
|
|
String PG_CONTENT_TITLE = " "+PG_TITLE+" "; //默认的内容区标题
|
|
String PG_CONTNET_TEXT = "请点击左侧列表";//默认的内容区文字
|
|
String PG_LEFT_WIDTH = "300";//默认的treeview宽度
|
|
|
|
//定义Treeview
|
|
OHTMLTreeView tviTemp = new OHTMLTreeView(CurPage, "系统警示信息","right");
|
|
tviTemp.init("MsgType");
|
|
%>
|
|
<%@ include file="/Frame/resources/include/include_main.jspf"%>
|
|
<script type="text/javascript">
|
|
function TreeViewOnClick(){
|
|
var sCurItemID = getCurTVItem().id;
|
|
AsControl.OpenView("/AppConfig/WarnMessage/WarnMsgList.jsp","MsgType="+sCurItemID,"right");
|
|
setTitle(getCurTVItem().name);
|
|
}
|
|
|
|
function initTreeView(){
|
|
<%=tviTemp.generateHTMLTreeView()%>
|
|
expandNode('root');
|
|
selectItem("0010");
|
|
}
|
|
|
|
initTreeView();
|
|
</script>
|
|
<%@ include file="/Frame/resources/include/include_end.jspf"%> |