You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
282 lines
9.9 KiB
282 lines
9.9 KiB
2 years ago
|
<%@ page language="java" contentType="text/html; charset=UTF-8"
|
||
|
pageEncoding="UTF-8" isELIgnored="false" %>
|
||
|
<%
|
||
|
String path = request.getContextPath();
|
||
|
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
|
||
|
%>
|
||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||
|
<html>
|
||
|
<head>
|
||
|
<!-- 页面meta -->
|
||
|
<meta charset="utf-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<title>数据 - AdminLTE2定制版</title>
|
||
|
<meta name="description" content="AdminLTE2定制版">
|
||
|
<meta name="keywords" content="AdminLTE2定制版">
|
||
|
|
||
|
<!-- Tell the browser to be responsive to screen width -->
|
||
|
<meta
|
||
|
content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no"
|
||
|
name="viewport">
|
||
|
|
||
|
|
||
|
<link rel="stylesheet" href="<%=basePath %>admin/plugins/bootstrap/css/bootstrap.min.css">
|
||
|
<link rel="stylesheet" href="<%=basePath %>admin/plugins/font-awesome/css/font-awesome.min.css">
|
||
|
<link rel="stylesheet" href="<%=basePath %>admin/plugins/ionicons/css/ionicons.min.css">
|
||
|
<link rel="stylesheet" href="<%=basePath %>admin/plugins/iCheck/square/blue.css">
|
||
|
<link rel="stylesheet" href="<%=basePath %>admin/plugins/morris/morris.css">
|
||
|
<link rel="stylesheet" href="<%=basePath %>admin/plugins/jvectormap/jquery-jvectormap-1.2.2.css">
|
||
|
<link rel="stylesheet" href="<%=basePath %>admin/plugins/datepicker/datepicker3.css">
|
||
|
<link rel="stylesheet" href="<%=basePath %>admin/plugins/daterangepicker/daterangepicker.css">
|
||
|
<link rel="stylesheet" href="<%=basePath %>admin/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.min.css">
|
||
|
<link rel="stylesheet" href="<%=basePath %>admin/plugins/datatables/dataTables.bootstrap.css">
|
||
|
<link rel="stylesheet" href="<%=basePath %>admin/plugins/treeTable/jquery.treetable.css">
|
||
|
<link rel="stylesheet" href="<%=basePath %>admin/plugins/treeTable/jquery.treetable.theme.default.css">
|
||
|
<link rel="stylesheet" href="<%=basePath %>admin/plugins/select2/select2.css">
|
||
|
<link rel="stylesheet" href="<%=basePath %>admin/plugins/colorpicker/bootstrap-colorpicker.min.css">
|
||
|
<link rel="stylesheet" href="<%=basePath %>admin/plugins/bootstrap-markdown/css/bootstrap-markdown.min.css">
|
||
|
<link rel="stylesheet" href="<%=basePath %>admin/plugins/adminLTE/css/AdminLTE.css">
|
||
|
<link rel="stylesheet" href="<%=basePath %>admin/plugins/adminLTE/css/skins/_all-skins.min.css">
|
||
|
<link rel="stylesheet" href="<%=basePath %>admin/css/style.css">
|
||
|
<link rel="stylesheet" href="<%=basePath %>admin/plugins/ionslider/ion.rangeSlider.css">
|
||
|
<link rel="stylesheet" href="<%=basePath %>admin/plugins/ionslider/ion.rangeSlider.skinNice.css">
|
||
|
<link rel="stylesheet" href="<%=basePath %>admin/plugins/bootstrap-slider/slider.css">
|
||
|
<link rel="stylesheet" href="<%=basePath %>admin/plugins/bootstrap-datetimepicker/bootstrap-datetimepicker.css">
|
||
|
|
||
|
|
||
|
<script src="<%=basePath %>admin/js/jquery-1.7.1.min.js"></script>
|
||
|
|
||
|
<script type="text/javascript">
|
||
|
|
||
|
$(function(){
|
||
|
|
||
|
loadjuese();
|
||
|
})
|
||
|
|
||
|
function loadjuese()
|
||
|
{
|
||
|
|
||
|
|
||
|
$.ajax({
|
||
|
type: "post",
|
||
|
url: "../../RoleServlet?method=getRoleList&t="+new Date().getTime()+"&from=combox",
|
||
|
dataType:'json',
|
||
|
success: function(data){
|
||
|
|
||
|
var totalhtml='';
|
||
|
for(var i=0;i<data.length;i++)
|
||
|
{
|
||
|
totalhtml+='<option value="'+data[i]["id"]+'">'+data[i]["rolename"]+'</option>';
|
||
|
|
||
|
}
|
||
|
$('#roleid').html(totalhtml);
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
</script>
|
||
|
|
||
|
|
||
|
</head>
|
||
|
|
||
|
<body class="hold-transition skin-purple sidebar-mini">
|
||
|
|
||
|
|
||
|
|
||
|
<!-- 内容区域 -->
|
||
|
<div class="content-wrapper111">
|
||
|
|
||
|
<!-- 内容头部 -->
|
||
|
<section class="content-header">
|
||
|
<h1>
|
||
|
社团管理 <small>指导老师表单</small>
|
||
|
</h1>
|
||
|
<ol class="breadcrumb">
|
||
|
<li><a href="<%=basePath %>admin/index.jsp"><i
|
||
|
class="fa fa-dashboard"></i> 首页</a></li>
|
||
|
<li><a
|
||
|
href="<%=basePath%>admin/pages/teacher-list">社团管理</a></li>
|
||
|
<li class="active">指导老师表单</li>
|
||
|
</ol>
|
||
|
</section>
|
||
|
<!-- 内容头部 /-->
|
||
|
|
||
|
<form action="<%=basePath %>TeacherServlet?method=AddUsers" method="post">
|
||
|
<!-- 正文区域 -->
|
||
|
<section class="content"> <!--产品信息-->
|
||
|
<div class="panel panel-default">
|
||
|
<div class="panel-heading">老师信息</div>
|
||
|
<div class="row data-type">
|
||
|
|
||
|
<div class="col-md-2 title">姓名</div>
|
||
|
<div class="col-md-4 data">
|
||
|
<input type="text" class="form-control" name="name" id="name"
|
||
|
placeholder="姓名" value="">
|
||
|
</div>
|
||
|
<div class="col-md-2 title">性别</div>
|
||
|
<div class="col-md-4 data">
|
||
|
<input type="text" class="form-control" name="sex" id="sex"
|
||
|
placeholder="性别" value="">
|
||
|
</div>
|
||
|
<div class="col-md-2 title">政治面貌</div>
|
||
|
<div class="col-md-4 data">
|
||
|
<input type="text" class="form-control" name="identity" id="identity"
|
||
|
placeholder="政治面貌" value="">
|
||
|
</div>
|
||
|
|
||
|
<div class="col-md-2 title">所在学院</div>
|
||
|
<div class="col-md-4 data">
|
||
|
<input type="text" class="form-control" name="location" id=""location""
|
||
|
placeholder="所在学院" value="">
|
||
|
</div>
|
||
|
|
||
|
<div class="col-md-2 title">专业</div>
|
||
|
<div class="col-md-4 data">
|
||
|
<input type="text" class="form-control" name="major" id="major"
|
||
|
placeholder="专业" value="">
|
||
|
</div>
|
||
|
|
||
|
<div class="col-md-2 title">指导社团分类</div>
|
||
|
<div class="col-md-4 data">
|
||
|
<input type="text" class="form-control" name="fenlei" id=""fenlei"
|
||
|
placeholder="指导社团分类" value="">
|
||
|
</div>
|
||
|
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
<!--订单信息/--> <!--工具栏-->
|
||
|
<div class="box-tools text-center">
|
||
|
<button type="submit" class="btn bg-maroon">保存</button>
|
||
|
<button type="button" class="btn bg-default"
|
||
|
onclick="history.back(-1);">返回</button>
|
||
|
</div>
|
||
|
<!--工具栏/--> </section>
|
||
|
<!-- 正文区域 /-->
|
||
|
</form>
|
||
|
</div>
|
||
|
<!-- 内容区域 /-->
|
||
|
|
||
|
<!-- 底部导航 -->
|
||
|
|
||
|
|
||
|
<!-- 底部导航 /-->
|
||
|
|
||
|
|
||
|
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/jQuery/jquery-2.2.3.min.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/jQueryUI/jquery-ui.min.js"></script>
|
||
|
<script>
|
||
|
$.widget.bridge('uibutton', $.ui.button);
|
||
|
</script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/bootstrap/js/bootstrap.min.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/raphael/raphael-min.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/morris/morris.min.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/sparkline/jquery.sparkline.min.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/jvectormap/jquery-jvectormap-1.2.2.min.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/jvectormap/jquery-jvectormap-world-mill-en.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/knob/jquery.knob.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/daterangepicker/moment.min.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/daterangepicker/daterangepicker.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/daterangepicker/daterangepicker.zh-CN.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/datepicker/bootstrap-datepicker.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/datepicker/locales/bootstrap-datepicker.zh-CN.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.all.min.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/slimScroll/jquery.slimscroll.min.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/fastclick/fastclick.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/iCheck/icheck.min.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/adminLTE/js/app.min.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/treeTable/jquery.treetable.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/select2/select2.full.min.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/colorpicker/bootstrap-colorpicker.min.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/bootstrap-wysihtml5/bootstrap-wysihtml5.zh-CN.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/bootstrap-markdown/js/bootstrap-markdown.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/bootstrap-markdown/locale/bootstrap-markdown.zh.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/bootstrap-markdown/js/markdown.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/bootstrap-markdown/js/to-markdown.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/ckeditor/ckeditor.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/input-mask/jquery.inputmask.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/input-mask/jquery.inputmask.date.extensions.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/input-mask/jquery.inputmask.extensions.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/datatables/jquery.dataTables.min.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/datatables/dataTables.bootstrap.min.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/chartjs/Chart.min.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/flot/jquery.flot.min.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/flot/jquery.flot.resize.min.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/flot/jquery.flot.pie.min.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/flot/jquery.flot.categories.min.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/ionslider/ion.rangeSlider.min.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/bootstrap-slider/bootstrap-slider.js"></script>
|
||
|
<script
|
||
|
src="<%=basePath %>admin/plugins/bootstrap-datetimepicker/bootstrap-datetimepicker.min.js"></script>
|
||
|
|
||
|
<script>
|
||
|
$(document).ready(function() {
|
||
|
// 选择框
|
||
|
$(".select2").select2();
|
||
|
|
||
|
// WYSIHTML5编辑器
|
||
|
$(".textarea").wysihtml5({
|
||
|
locale : 'zh-CN'
|
||
|
});
|
||
|
});
|
||
|
|
||
|
// 设置激活菜单
|
||
|
function setSidebarActive(tagUri) {
|
||
|
var liObj = $("#" + tagUri);
|
||
|
if (liObj.length > 0) {
|
||
|
liObj.parent().parent().addClass("active");
|
||
|
liObj.addClass("active");
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
|
||
|
</body>
|
||
|
|
||
|
</html>
|