Files
SIPAIIS_WMS_JSSW/WebRoot/jsp/report/rptDeptSetTree.jsp
2026-01-16 14:13:44 +08:00

118 lines
4.0 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"%>
<%@page import="com.sipai.entity.report.RptInfoSet" %>
<%request.setAttribute("TYPE_CATALOGUE", RptInfoSet.TYPE_CATALOGUE);%>
<%request.setAttribute("TYPE_SETTING", RptInfoSet.TYPE_SETTING);%>
<!DOCTYPE html>
<!-- <html lang="zh-CN"> -->
<!-- BEGIN HEAD -->
<head>
<title><%= ServerObject.atttable.get("TOPTITLE")%></title>
<!-- 引用页头及CSS页-->
<jsp:include page="/jsp/inc.jsp"></jsp:include>
<script type="text/javascript">
var rptTypeStatic="";
var treeSize=0;
var addFun = function(type) {
var pid="-1";
if(treeSize>0){
var node=$('#tree').treeview('getSelected');
if(node!=null && node.length>0){
pid=node[0].id;
if(node[0].type!='${TYPE_CATALOGUE}'){
pid=node[0].pid;
}
}else{
if(type=='${TYPE_SETTING}'){
showAlert('d',"请先选择或添加目录。","mainAlertdiv");
return false;
}
}
}
$.post(ext.contextPath + '/report/rptDeptSet/showRptDeptSetAdd.do', {unitId: unitId, pid:pid,type:type} , function(data) {
//console.log(data);
$("#rptDeptSetEdit").html(data);
});
};
var editFun = function(id,type) {
$.post(ext.contextPath + '/report/rptDeptSet/doedit.do', {id: id,type:type} , function(data) {
$("#rptDeptSetEdit").html(data);
});
};
var initTreeView = function() {
$.post(ext.contextPath + '/report/rptDeptSet/getTree.do', {unitId:unitId} , function(data) {
var treeData = data.result;
treeSize = treeData.length;
$('#tree').treeview({data: treeData});
$('#tree').on('nodeSelected', function(event, treeData) {
editFun(treeData.id,treeData.type);
});
},'json');
$("#rptDeptSetEdit").html("");
};
$(function() {
initTreeView();
});
</script>
</head>
<body 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="equipmentClassSubDiv"></div> -->
<div id="mainAlertdiv"></div>
<div id="subDiv"></div>
<div class="row">
<div class="col-md-2">
<div class="box box-solid">
<div class="box-header with-border">
<h3 class="box-title">填报类型</h3>
<div class="box-tools" id="addDiv">
<button type="buttonB" class="btn btn-box-tool" onclick="addFun('${TYPE_CATALOGUE}');">
<i class="fa fa-plus"></i> 目录
</button>
<button type="buttonB" class="btn btn-box-tool" onclick="addFun('${TYPE_SETTING}');">
<i class="fa fa-plus"></i> 填报
</button>
</button>
</div>
</div>
<div class="box-body no-padding">
<div id="tree" style="height:700px;overflow:auto; "></div>
</div>
<!-- /.box-body -->
</div>
</div>
<div class="col-md-10" id="rptDeptSetEdit" ></div>
</div>
</section>
<!-- /.content -->
</div>
<%-- <jsp:include page="/jsp/bottom.jsp"></jsp:include> --%>
<%-- <jsp:include page="/jsp/side.jsp"></jsp:include> --%>
</div>
</body>
</html>