160 lines
6.1 KiB
Plaintext
160 lines
6.1 KiB
Plaintext
|
|
<%@ page language="java" pageEncoding="UTF-8" %>
|
||
|
|
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c" %>
|
||
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
|
||
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
|
||
|
|
<%@ page import="com.sipai.entity.base.ServerObject" %>
|
||
|
|
<%@ taglib uri="http://www.springsecurity.org/jsp" prefix="security" %>
|
||
|
|
|
||
|
|
<!DOCTYPE html>
|
||
|
|
<!-- <html lang="zh-CN"> -->
|
||
|
|
<!-- BEGIN HEAD -->
|
||
|
|
<head>
|
||
|
|
<title><%= ServerObject.atttable.get("TOPTITLE")%>
|
||
|
|
</title>
|
||
|
|
<!-- 引用页头及CSS页-->
|
||
|
|
<jsp:include page="/jsp/inc.jsp"></jsp:include>
|
||
|
|
|
||
|
|
<!-- 文件上传-->
|
||
|
|
<link rel="stylesheet" href="<%=request.getContextPath()%>/node_modules/bootstrap-fileinput/css/fileinput.min.css"/>
|
||
|
|
<script type="text/javascript"
|
||
|
|
src="<%=request.getContextPath()%>/node_modules/bootstrap-fileinput/js/fileinput.min.js"
|
||
|
|
charset="utf-8"></script>
|
||
|
|
<script type="text/javascript" src="<%=request.getContextPath()%>/node_modules/bootstrap-fileinput/js/locales/zh.js"
|
||
|
|
charset="utf-8"></script>
|
||
|
|
<!-- 拖拽排序-->
|
||
|
|
<script type="text/javascript" src="<%=request.getContextPath()%>/plugins/bootstrap-table/jquery.tablednd.js"
|
||
|
|
charset="utf-8"></script>
|
||
|
|
<script type="text/javascript"
|
||
|
|
src="<%=request.getContextPath()%>/plugins/bootstrap-table/extensions/reorder-rows/bootstrap-table-reorder-rows.js"
|
||
|
|
charset="utf-8"></script>
|
||
|
|
<link rel="stylesheet"
|
||
|
|
href="<%=request.getContextPath()%>/plugins/bootstrap-table/extensions/reorder-rows/bootstrap-table-reorder-rows.css"/>
|
||
|
|
<script type="text/javascript">
|
||
|
|
var addFun = function () {
|
||
|
|
var node = $('#tree').treeview('getSelected');
|
||
|
|
console.log(node);
|
||
|
|
var pid = "";
|
||
|
|
var type = "";
|
||
|
|
if (node != null && node.length > 0) {
|
||
|
|
pid = node[0].id;
|
||
|
|
type = node[0].type;
|
||
|
|
} else {
|
||
|
|
// pid = "-1";
|
||
|
|
type = "-1";
|
||
|
|
}
|
||
|
|
|
||
|
|
// console.log(type)
|
||
|
|
if (type == "-1") {
|
||
|
|
$.post(ext.contextPath + '/efficiency/constituteConfigureScheme/doadd.do', {
|
||
|
|
unitId: unitId,
|
||
|
|
pid: pid
|
||
|
|
}, function (data) {
|
||
|
|
$("#menuBox").html(data);
|
||
|
|
});
|
||
|
|
} else {
|
||
|
|
if (type == "0") {
|
||
|
|
pid = "-1";
|
||
|
|
}
|
||
|
|
let schemeId = "";
|
||
|
|
if(node[0].schemeId!=null&&node[0].schemeId!=''){
|
||
|
|
schemeId =node[0].schemeId;
|
||
|
|
}else{
|
||
|
|
schemeId = node[0].id;
|
||
|
|
}
|
||
|
|
// console.log(schemeId)
|
||
|
|
$.post(ext.contextPath + '/efficiency/constituteConfigure/doadd.do', {
|
||
|
|
unitId: unitId,
|
||
|
|
pid: pid,
|
||
|
|
schemeId:schemeId
|
||
|
|
}, function (data) {
|
||
|
|
$("#menuBox").html(data);
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
};
|
||
|
|
|
||
|
|
var editFun = function (id, type) {
|
||
|
|
if (type == '0') {
|
||
|
|
$.post(ext.contextPath + '/efficiency/constituteConfigureScheme/doedit.do', {id: id}, function (data) {
|
||
|
|
$("#menuBox").html(data);
|
||
|
|
});
|
||
|
|
} else {
|
||
|
|
$.post(ext.contextPath + '/efficiency/constituteConfigure/doedit.do', {id: id}, function (data) {
|
||
|
|
$("#menuBox").html(data);
|
||
|
|
});
|
||
|
|
}
|
||
|
|
};
|
||
|
|
|
||
|
|
var initTreeView = function () {
|
||
|
|
$.post(ext.contextPath + '/efficiency/constituteConfigure/getTreeJson.do', {unitId: unitId}, function (data) {
|
||
|
|
console.info(data)
|
||
|
|
$('#tree').treeview({
|
||
|
|
data: data
|
||
|
|
});
|
||
|
|
$('#tree').on('nodeSelected', function (event, data) {
|
||
|
|
editFun(data.id, data.type);
|
||
|
|
//var node=$('#tree').treeview('getSelected');
|
||
|
|
});
|
||
|
|
}, 'json');
|
||
|
|
$("#menuBox").html("");
|
||
|
|
};
|
||
|
|
|
||
|
|
$(function () {
|
||
|
|
initTreeView();
|
||
|
|
});
|
||
|
|
|
||
|
|
</script>
|
||
|
|
|
||
|
|
</head>
|
||
|
|
<body onload="initMenu()" class="hold-transition ${cu.themeclass} sidebar-mini">
|
||
|
|
<div class="wrapper">
|
||
|
|
<!-- 引用top -->
|
||
|
|
<%-- <jsp:include page="/jsp/top.jsp"></jsp:include> --%>
|
||
|
|
<!-- 菜单栏 -->
|
||
|
|
<%-- <jsp:include page="/jsp/left.jsp"></jsp:include> --%>
|
||
|
|
<div class="content-wrapper">
|
||
|
|
<!-- Content Header (Page header) -->
|
||
|
|
<%-- <section class="content-header">--%>
|
||
|
|
<%-- <h1 id="head_title"></h1>--%>
|
||
|
|
<%-- <ol class="breadcrumb">--%>
|
||
|
|
<%-- <li><a id='head_firstlevel' href="#"><i class="fa fa-dashboard"></i> </a></li>--%>
|
||
|
|
<%-- <!-- <li class="active">Here</li> -->--%>
|
||
|
|
<%-- </ol>--%>
|
||
|
|
<%-- </section>--%>
|
||
|
|
|
||
|
|
<!-- Main content -->
|
||
|
|
<section class="content container-fluid">
|
||
|
|
<div id="mainAlertdiv"></div>
|
||
|
|
<div id="subDiv"></div>
|
||
|
|
<div id="menu4SelectDiv"></div>
|
||
|
|
<div class="row">
|
||
|
|
<div class="col-md-3">
|
||
|
|
<div class="box box-solid">
|
||
|
|
<div class="box-header with-border">
|
||
|
|
<h3 class="box-title">构成分析架构</h3>
|
||
|
|
|
||
|
|
<div class="box-tools">
|
||
|
|
<button type="button" class="btn btn-box-tool" onclick="addFun();"><i
|
||
|
|
class="fa fa-plus"></i>
|
||
|
|
</button>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div class="box-body no-padding">
|
||
|
|
<div id="tree" style="height:550px;overflow:auto;"></div>
|
||
|
|
</div>
|
||
|
|
<!-- /.box-body -->
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div class="col-md-9" id="menuBox">
|
||
|
|
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
</section>
|
||
|
|
<!-- /.content -->
|
||
|
|
</div>
|
||
|
|
<%-- <jsp:include page="/jsp/bottom.jsp"></jsp:include> --%>
|
||
|
|
<%-- <jsp:include page="/jsp/side.jsp"></jsp:include> --%>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|