xinyb
2022-05-18 c2dc593c9b8948718381f3a2996b6f94a59ad80a
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
59
60
61
62
63
64
65
66
<%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="top20" class="easyui-layout TabPanelBody" fit="true" onload="formtype();">
<div id="loading" class="loading">
    <p class="loadingMsg">加载中、请稍候....</p>
    <iframe class="loadingIFRM"></iframe>
</div>
<div id="h_all" class="easyui-layout" region="north" border="false" style="overflow: hidden;">
    <div region="north" class="easyui-north3" id="h_top" border="false"
         style="width:100%;overflow: hidden;border-bottom: 1px solid #99BBE8">
        <div class="panelTopTitle">
            <%@ include file="top.jsp" %>
        </div>
    </div>
    <div region="center" class="easyui-north" border="false" style="width:100%;overflow: hidden;padding-top: 3px">
        <%@ include file="panel.jsp" %>
    </div>
</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" style="margin-top: 5px;">
        <%@ include file="panelR.jsp" %>
    </div>
    <div class="colorDescription">
        <%//文字颜色说明显示位置 xin 2022-5-16 14:45:39%>
        [?ColorDescription]
    </div>
</div>
<div region="south" split="false"
     style="height:30px;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>
</body>
<script type="text/javascript">
    topPan.ref();
    leftWidth = '[?treewidth]'.replace('px', '');
    window.onunload = function () {
        refalshGridOfColse();
    }
</script>
</html>
<%} catch (Exception e) {%>
<script>
    alert("<%=e.getCause()!=null?e.getCause().getMessage():e.getMessage()%>");
</script>
<%}%>