-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patht_checkstudentlist.html
193 lines (185 loc) · 6.75 KB
/
t_checkstudentlist.html
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>参考学生列表</title>
<link href="css/mui.min.css" rel="stylesheet" />
<meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1,user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="stylesheet" href="css/mui.min.css">
<!--App自定义的css-->
<link rel="stylesheet" type="text/css" href="css/app.css"/>
<link rel="stylesheet" type="text/css" href="css/iconfont.css"/>
<script type="text/javascript" src="js/jquery-3.2.1.min.js"></script>
<script src="js/mui.min.js"></script>
<script src="js/tool.js"></script>
<style>
body{
background-color:#F3F3F3;
}
.topper
{
background-color:#29c4b5;
font-size: 35px;
margin:0;
margin-bottom: 1%;
padding-top: 0.3px;
padding-bottom: 0.3px;
text-align: center;
font-weight:bold;
color:#FFFFFF;
}
.user_img{
padding-left: 20px;
padding-top: 0.1px;
padding-bottom:0.1px;;
margin-top: 3%;
background-color: #FFFFFF;
font-size: 50px;
}
.img{
margin-top: 10%;
margin-left: 5%;
}
#jiaru{
height: 50px;
}
#login-form{
margin-top: 3%;
}
.oa-contact-name1{
font-size: 15px;
}
</style>
</head>
<body>
<header class="mui-bar mui-bar-nav ">
<a class="mui-icon mui-icon-arrowleft" id="back" ></a>
<h1 class="mui-title">参考学生列表</h1>
</header>
<nav class="mui-bar mui-bar-tab">
<a class="mui-tab-item " href="t_test.html">
<span class="mui-icon iconfont icon-ceshi"></span>
<span class="mui-tab-label">测试</span>
</a>
<a class="mui-tab-item" href="t_tiku.html">
<span class="mui-icon mui-icon-email"></span>
<span class="mui-tab-label">题库</span>
</a>
<a class="mui-tab-item" href="t_banji.html">
<span class="mui-icon mui-icon-contact"></span>
<span class="mui-tab-label">班级</span>
</a>
<a class="mui-tab-item" href="t_user.html">
<span class="mui-icon mui-icon-gear"></span>
<span class="mui-tab-label">我</span>
</a>
</nav>
<div class="mui-content">
<div id="item1mobile" class="mui-control-content mui-active">
<ul class="mui-table-view mui-table-view-striped mui-table-view-condensed " id="out">
</ul>
</div>
</div>
</body>
<script>
mui.init({
swipeBack:true //启用右滑关闭功能
});
mui('body').on('tap','a',function(){document.location.href=this.href;});
$(document).ready(function () {
//var url='127.0.0.1:8080';
// var url='210.36.22.231';
var userid = GetUseridCookie().get("userid");
var studentid=UrlParm.parm("studentid");
var studentname = UrlParm.parm("studentname");
var testid=UrlParm.parm("testid");
var use_paperid=UrlParm.parm("use_paperid");
var title=UrlParm.parm("title");
document.getElementById('back').href='new_t_datijiguo.html?testid='+testid+'&use_paperid='+use_paperid+'&title='+title;
if(userid==undefined){
alert("登录过期,请重新登录!");
javascript:window.location.href="login.html"
}
out=document.getElementById('out');
studentName=[];
studentName=studentname.split(',');
student=[];
student=studentid.split(',');
mui.ajax('http://'+url+'/jizhibackend/servlet/GetTestStudentServlet', {
data: {
testid:testid,
},
xhrFields: {
withCredentials: true
},
crossDomain: true,
dataType: 'json', //服务器返回json格式数据
type: 'post', //HTTP请求类型
timeout: 10000000, //超时时间设置为10秒;
headers: { 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8' },
success: function(data) {
// alert(data.students);
getList(data.students);
},
error: function(xhr, type, errorThrown) {
//异常处理;
mui.toast("获取学生列表失败,请刷新重新获取...");
console.log(type);
}
});
function getList(allStudents){
var allStudentIDs = [];
jQuery.each(allStudents,function(index,item){
allStudentIDs.push(item.student_id);
});
// var a = [1,2,3,4,5,6,7];
// var b = [1,2,5];
//取出两个数组间不相同的元素
var c = [];
var tmp = allStudentIDs.concat(student);
var o = {};
for (var i = 0; i < tmp.length; i ++) (tmp[i] in o) ? o[tmp[i]] ++ : o[tmp[i]] = 1;
for (x in o) if (o[x] == 1) c.push(x);
// alert(c);
// alert(allStudentIDs.length);
for(var i=0;i<student.length-1;i++)
{
var a = document.createElement('a');
var li = document.createElement('li');
a.href='t_checkstudenttest.html?userid='+student[i]+'&testid='+testid+'&use_paperid='+use_paperid+'&title='+title+'&studentid='+studentid+'&studentname='+studentname;
li.className="mui-table-view mui-table-view-striped mui-table-view-condensed";
li.innerHTML='<div class="mui-slider-cell">'+
'<div class="oa-contact-cell mui-table">'+
'<div class="oa-contact-avatar mui-table-cell">'+
'<img src="images/userhead.png" width="60px" />'+
'</div><div class="oa-contact-content mui-table-cell"><div class="mui-clearfix">'+
'<h4 class="oa-contact-name"> </h4></div>'+
'<p class="oa-contact-name1">'+studentName[i]+
'</p></div></div></div>';
a.appendChild(li);
out.appendChild(a);
}
for(var i=0;i<c.length;i++)
{
var li = document.createElement('li');
jQuery.each(allStudents,function(index,item){
if (c[i]==item.student_id) {
li.className="mui-table-view mui-table-view-striped mui-table-view-condensed";
li.innerHTML='<div class="mui-slider-cell">'+
'<div class="oa-contact-cell mui-table">'+
'<div class="oa-contact-avatar mui-table-cell">'+
'<img src="images/userhead.png" width="60px" />'+
'</div><div class="oa-contact-content mui-table-cell"><div class="mui-clearfix">'+
'<h4 class="oa-contact-name"> </h4></div>'+
'<p class="oa-contact-name1">'+item.remark_name+
'<span style="color:red">(未完成测试)</span></p></div></div></div>';
out.appendChild(li);
}
});
}
}
});
</script>
</html>