7d60b75e
孙向锦
添加班级-1
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE html>
<html lang="en">
<head>
<base href="<%=basePath%>">
<!-- 下拉框 -->
<link rel="stylesheet" href="static/ace/css/chosen.css" />
<!-- jsp文件头和头部 -->
<%@ include file="../../system/index/top.jsp"%>
<!-- 日期框 -->
<link rel="stylesheet" href="static/ace/css/datepicker.css" />
|
8942b440
孙向锦
提交code
|
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
<style>
.table td{border:0 !important;}
.btn1 {
width: 80%;
height: 40px;
margin: 0 auto;
background: #3bc2d6;
margin-top: 5%;
}
.btn1 a {
display: block;
width: 100%;
height: 100%;
color: #fff;
text-decoration: none;
text-align: center;
line-height: 40px;
font-size: 20px;
}
</style>
|
7d60b75e
孙向锦
添加班级-1
|
40
41
42
43
44
45
46
47
48
49
50
51
52
|
</head>
<body class="no-skin">
<!-- /section:basics/navbar.layout -->
<div class="main-container" id="main-container">
<!-- /section:basics/sidebar -->
<div class="main-content">
<div class="main-content-inner">
<div class="page-content">
<div class="row">
<div class="col-xs-12">
<form action="student/${msg }.do" name="Form" id="Form" method="post">
<input type="hidden" name="ID" id="ID" value="${pd.ID}"/>
|
253c2bb1
孙向锦
班级学生管理
|
53
54
|
<input type="hidden" name="CLASS_ID" id="CLASS_ID" value="${pd.CLASS_ID}"/>
<input type="hidden" name="TERM_ID" id="TERM_ID" value="${pd.TERM_ID}"/>
|
7d60b75e
孙向锦
添加班级-1
|
55
|
<div id="zhongxin" style="padding-top: 13px;">
|
6429ab88
孙向锦
remove
|
56
|
<table id="table_report" class="table">
|
7d60b75e
孙向锦
添加班级-1
|
57
|
<tr>
|
6429ab88
孙向锦
remove
|
58
|
<td style="width:90px;text-align: right;padding-top: 13px;">姓名:</td>
|
7d60b75e
孙向锦
添加班级-1
|
59
60
61
|
<td><input type="text" name="NAME" id="NAME" value="${pd.NAME}" maxlength="255" placeholder="这里输入学生姓名" title="学生姓名" style="width:98%;"/></td>
</tr>
<tr>
|
6429ab88
孙向锦
remove
|
62
|
<td style="width:90px;text-align: right;padding-top: 13px;">学籍号:</td>
|
7d60b75e
孙向锦
添加班级-1
|
63
64
65
|
<td><input type="text" name="SNO" id="SNO" value="${pd.SNO}" maxlength="255" placeholder="这里输入学籍号" title="学籍号" style="width:98%;"/></td>
</tr>
<tr>
|
6429ab88
孙向锦
remove
|
66
|
<td style="width:90px;text-align: right;padding-top: 13px;">学号:</td>
|
7d60b75e
孙向锦
添加班级-1
|
67
68
69
|
<td><input type="text" name="NUMBER" id="NUMBER" value="${pd.NUMBER}" maxlength="255" placeholder="这里输入学号" title="学号" style="width:98%;"/></td>
</tr>
<tr>
|
6429ab88
孙向锦
remove
|
70
|
<td style="width:90px;text-align: right;padding-top: 13px;">性别:</td>
|
7d60b75e
孙向锦
添加班级-1
|
71
72
|
<td>
<%-- <input type="number" name="SEX" id="SEX" value="${pd.SEX}" maxlength="32" placeholder="这里输入性别" title="性别" style="width:98%;"/></td> --%>
|
6429ab88
孙向锦
remove
|
73
|
<select class="chosen-select form-control" name="SEX" id="SEX" data-placeholder="这里输入班级类型" style="width:98%;">
|
7d60b75e
孙向锦
添加班级-1
|
74
75
76
77
78
79
|
<option value="1" <c:if test="${pd.SEX==1}">selected="true"</c:if>>男</option>
<option value="0" <c:if test="${pd.SEX==0}">selected="true"</c:if>>女</option>
</select>
</td>
</tr>
<tr>
|
6429ab88
孙向锦
remove
|
80
|
<td style="width:90px;text-align: right;padding-top: 13px;">组号:</td>
|
7d60b75e
孙向锦
添加班级-1
|
81
82
83
|
<td><input type="text" name="GROUPID" id="GROUPID" value="${pd.GROUPID}" maxlength="255" placeholder="这里输入组号" title="组号" style="width:98%;"/></td>
</tr>
<tr>
|
6429ab88
孙向锦
remove
|
84
|
<td style="width:90px;text-align: right;padding-top: 13px;">签到码:</td>
|
7d60b75e
孙向锦
添加班级-1
|
85
86
87
|
<td><input type="text" name="SIGN_NO" id="SIGN_NO" value="${pd.SIGN_NO}" maxlength="255" placeholder="这里输入签到码" title="签到码" style="width:98%;"/></td>
</tr>
<tr>
|
6429ab88
孙向锦
remove
|
88
|
<td style="width:90px;text-align: right;padding-top: 13px;">家长姓名:</td>
|
7d60b75e
孙向锦
添加班级-1
|
89
90
91
|
<td><input type="text" name="PARENT_NAME" id="PARENT_NAME" value="${pd.PARENT_NAME}" maxlength="255" placeholder="这里输入家长姓名" title="家长姓名" style="width:98%;"/></td>
</tr>
<tr>
|
6429ab88
孙向锦
remove
|
92
|
<td style="width:90px;text-align: right;padding-top: 13px;">家长手机号:</td>
|
7d60b75e
孙向锦
添加班级-1
|
93
94
95
|
<td><input type="text" name="PARENT_PHONE" id="PARENT_PHONE" value="${pd.PARENT_PHONE}" maxlength="255" placeholder="这里输入家长手机号" title="家长手机号" style="width:98%;"/></td>
</tr>
<tr>
|
6429ab88
孙向锦
remove
|
96
|
<td style="width:90px;text-align: right;padding-top: 13px;">键盘ID:</td>
|
7d60b75e
孙向锦
添加班级-1
|
97
98
99
|
<td><input type="text" name="KEYPAD_ID" id="KEYPAD_ID" value="${pd.KEYPAD_ID}" maxlength="255" placeholder="这里输入键盘ID" title="键盘ID" style="width:98%;"/></td>
</tr>
<tr>
|
6429ab88
孙向锦
remove
|
100
|
<td style="width:90px;text-align: right;padding-top: 13px;">备注:</td>
|
7d60b75e
孙向锦
添加班级-1
|
101
102
103
104
|
<td><input type="text" name="REMARK" id="REMARK" value="${pd.REMARK}" maxlength="255" placeholder="这里输入备注" title="备注" style="width:98%;"/></td>
</tr>
<tr>
<td style="text-align: center;" colspan="10">
|
8942b440
孙向锦
提交code
|
105
106
107
108
|
<!-- <a class="btn" onclick="save();"><div style="width:100px;">保存</div></a> -->
<div class="btn1">
<a onclick="save();">保存</a>
</div>
|
7d60b75e
孙向锦
添加班级-1
|
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
</td>
</tr>
</table>
</div>
<div id="zhongxin2" class="center" style="display:none"><br/><br/><br/><br/><br/><img src="static/images/jiazai.gif" /><br/><h4 class="lighter block green">提交中...</h4></div>
</form>
</div>
<!-- /.col -->
</div>
<!-- /.row -->
</div>
<!-- /.page-content -->
</div>
</div>
<!-- /.main-content -->
</div>
<!-- /.main-container -->
<!-- 页面底部js¨ -->
<%@ include file="../../system/index/foot.jsp"%>
<!-- 下拉框 -->
<script src="static/ace/js/chosen.jquery.js"></script>
<!-- 日期框 -->
<script src="static/ace/js/date-time/bootstrap-datepicker.js"></script>
<!--提示框-->
<script type="text/javascript" src="static/js/jquery.tips.js"></script>
<script type="text/javascript">
$(top.hangge());
//保存
function save(){
if($("#NAME").val()==""){
$("#NAME").tips({
side:3,
msg:'请输入学生姓名',
bg:'#AE81FF',
time:2
});
$("#NAME").focus();
return false;
}
|
253c2bb1
孙向锦
班级学生管理
|
150
|
|
7d60b75e
孙向锦
添加班级-1
|
151
152
153
154
155
156
157
158
159
160
161
162
|
$("#Form").submit();
$("#zhongxin").hide();
$("#zhongxin2").show();
}
$(function() {
//日期框
$('.date-picker').datepicker({autoclose: true,todayHighlight: true});
});
</script>
</body>
</html>
|