fs-danaus
2021-03-05 a6a76f98715a5539c8fd77676d0ea1af5c9c5a4c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<%try{%>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ page trimDirectiveWhitespaces="true" %> 
<%@ include file="dataHead.jsp" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"  "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<META NAME="ROBOTS" CONTENT="NONE">
<title>[?title]</title>
<%@ include file="jsCssHead.jsp" %>
</head>
<body id="top2" class="easyui-layout" fit="true">    
<div id="loading" class="loading">
    <p class="loadingMsg">加载中、请稍候....</p>
    <iframe class="loadingIFRM"></iframe>
</div>             
        <div class="easyui-north" region="north"  border="false" style="overflow: hidden;">
            <%@ include file="top.jsp" %>
        </div>      
            
        <div region="west" border="true" split="true" style="width:[?treewidth];border-left:0px;border-bottom:0px;">            
            <%@ include file="tree.jsp" %>            
        </div>        
        <div region="center" id="tplt-panels" class="easyui-panel"  border="true" style="border-right:0px;border-bottom:0px;">
        <div id="tplt-panel">
            <%@ include file="panel.jsp" %>
        </div>        
        </div>        
        <div region="south" split="false" style="height:33px;background:#efefef;border-right:0px;border-bottom:0px;border-left:0px;">
            <div style="margin-top:3px;">
                <a onclick="addNode(0);"  class="easyui-linkbutton">增加同级节点</a>
                <a onclick="addNode(1);"  class="easyui-linkbutton">增加下级节点</a>
                <a onclick="delNode();" class="easyui-linkbutton">删除节点</a>
                <label for="isDrag" style="cursor: pointer;">允许拖动</label>
                <span>
                <input type="checkbox" id="isDrag" style="margin-top:5px;position:absolute;" name="isDrag">
                </span>
            </div>
        </div>        
<%@ include file="foolter.jsp" %>
</body>
<script>
 leftWidth='[?treewidth]'.replace('px','');
 window.onunload=function(){
    if(typeof(mygrid)!="undefined"&&mygrid!=null){
        mygrid.refalshGridOfColse();
    }else{
        refalshGridOfColse();
    }
 }
</script>
</html>
<%}catch(Exception e){%>
<script>
alert("<%=e.getCause()!=null?e.getCause().getMessage():e.getMessage()%>");
</script>
<%}%>