forked from luyuting/Scholarship
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscience.php
363 lines (363 loc) · 11.2 KB
/
science.php
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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>科技创新奖学金</title>
<link rel="stylesheet" href="css/main.css" />
<link rel="stylesheet" href="css/science.css" />
<link rel="stylesheet" href="css/wrapper.css" />
<script src="js/apply.js"></script>
<script src="js/ajax_table.js"></script>
<script src="js/science.js"></script>
</head>
<body>
<?php
include('nav.php');
include('check.php');
?>
<div class="cover" id="cover-comp">
<div class="add-box">
<div class="add-title"><p>添加项目</p></div>
<form class="add-content" id="form_comp">
<div class="wrapper">
<label>竞赛名称</label>
<select id="comp_name">
<option>“求索杯”英语竞赛</option>
</select>
</div>
<div class="wrapper">
<label>级别</label>
<select id="comp_rate">
<option>国家级及以上</option>
</select>
</div>
<div class="wrapper">
<label>获奖等级</label>
<select id="comp_prize">
<option>第一名</option>
<option>第二名</option>
<option>第三名</option>
<option>第四名</option>
<option>第五名</option>
<option>第六名</option>
<option>一等奖</option>
<option>二等奖</option>
<option>三等奖</option>
<option>优胜奖及其他</option>
<option>推荐未获奖</option>
</select>
</div>
<div class="wrapper">
<label>团队人数</label>
<input type="text" id="comp_team">
</div>
<div class="wrapper">
<label>组内排序</label>
<select id="comp_team_order">
</select>
</div>
<div class="wrapper">
<label>担任角色</label>
<select id="comp_role">
<option>队长</option>
<option>队员</option>
</select>
</div>
<div class="wrapper">
<label>主办单位</label>
<input type="text" id="comp_host">
</div>
<div class="wrapper">
<label>获奖日期</label>
<input type="date" id="comp_time">
</div>
<div class="textarea-wrapper">
<label>获奖备注</label>
<textarea rows="6" cols="80" id="comp_remark"></textarea>
</div>
<div class="button-wrapper">
<input type="button" class="button-success" value="点击保存" onclick="applyComp()">
<input type="button" class="button-success" value="取消操作" onclick="hideCover('cover-comp')">
</div><hr>
</form>
</div>
</div>
<div class="cover" id="cover-paper">
<div class="add-box">
<div class="add-title"><p>添加项目</p></div>
<form class="add-content" id="form_paper">
<div class="wrapper">
<label>论文题目</label>
<input type="text" id="paper_name"/>
</div>
<div class="wrapper">
<label>期刊名称</label>
<input type="text" id="paper_journal"/>
</div>
<div class="wrapper">
<label>级别</label>
<select id="paper_level">
<option>核心期刊</option>
<option>非核心期刊以及国际学术会议</option>
<option>国家学术会议</option>
</select>
</div>
<div class="wrapper">
<label>EI,SCI收录</label>
<select id="paper_ie_sci">
<option>否</option>
<option>是</option>
</select>
</div>
<div class="wrapper">
<label>卷号期号</label>
<input type="text" id="paper_vol"/>
</div>
<div class="wrapper">
<label>出版时间</label>
<input type="date" id="paper_time"/>
</div>
<div class="wrapper">
<label>作者人数</label>
<input type="text" id="paper_team_num"/>
</div>
<div class="wrapper">
<label>协商得分</label>
<input type="text" placeholder="2014级及以后需填写" id="paper_discuss_score"/>
</div>
<div class="wrapper">
<label>第几作者</label>
<select id="paper_team_order">
<option>第一作者</option>
<option>第二作者</option>
<option>第三作者</option>
<option>第四作者</option>
<!--<option>其他作者</option>-->
</select>
</div>
<hr>
<div class="button-wrapper">
<input type="button" class="button-success" value="点击保存" onclick="applyPaper()"/>
<input type="button" class="button-success" value="取消操作" onclick="hideCover('cover-paper')"/>
</div><hr>
</form>
</div>
</div>
<div class="cover" id="cover-invention">
<div class="add-box">
<div class="add-title"><p>添加项目</p></div>
<form class="add-content" id="form_invention">
<div class="wrapper">
<label>名称</label>
<input type="text" id="invention_name"/>
</div>
<div class="wrapper">
<label>专利号</label>
<input type="text" id="invention_account"/>
</div>
<div class="wrapper">
<label>团队人数</label>
<input type="text" id="invention_team_num"/>
</div>
<div class="wrapper">
<label>获批时间</label>
<input type="date" id="invention_time"/>
</div>
<div class="wrapper">
<label>组内排序</label>
<select id="invention_team_order">
</select>
</div>
<div class="wrapper">
<label>专利类别</label>
<select id="invention_type">
<option>发明型专利</option>
<option>实用型专利</option>
<option>外观型专利</option>
</select>
</div>
<div class="wrapper">
<label>协商得分</label>
<input type="text" placeholder="2014级及以后需填写" id="invention_discuss_score"/>
</div>
<div class="textarea-wrapper">
<label>备注</label>
<textarea rows="6" cols="80" id="invention_remark"></textarea>
</div>
<div class="button-wrapper">
<input type="button" class="button-success" value="点击保存" onclick="applyInvention()"/>
<input type="button" class="button-success" value="取消操作" onclick="hideCover('cover-invention')"/>
</div><hr>
</form>
</div>
</div>
<div class="cover" id="cover-project">
<div class="add-box">
<div class="add-title"><p>添加项目</p></div>
<form class="add-content" id="form_project">
<div class="wrapper">
<label>项目名称</label>
<input type="text" id="project_name"/>
</div>
<div class="wrapper">
<label>获批时间</label>
<input type="date" id="project_time"/>
</div>
<div class="wrapper">
<label>级别</label>
<select id="project_rate">
<option>国家级</option>
<option>省级</option>
<option>市级</option>
<option>校级</option>
<option>学部级</option>
</select>
</div>
<div class="wrapper">
<label>评定级别</label>
<select id="project_prize">
<option>优</option>
<option>良</option>
<option>中</option>
<option>及格</option>
</select>
</div>
<div class="wrapper">
<label>组内排序</label>
<select id="project_team_order">
</select>
</div>
<div class="wrapper">
<label>团队人数</label>
<input type="text" id="project_team_num">
</div>
<div class="textarea-wrapper">
<label>备注</label>
<textarea rows="6" cols="80" id="project_remark"></textarea>
</div>
<div class="button-wrapper">
<input type="button" class="button-success" value="点击保存" onclick="applyScieTechProject()" />
<input type="button" class="button-success" value="取消操作" onclick="hideCover('cover-project')"/>
</div><hr>
</form>
</div>
</div>
<div class="main-box">
<div id="science" class="main-apply">
<big><strong>科技创新奖学金</strong></big><hr>
<div class="main-apply-table">
<span>科创竞赛</span><img src="image/add.jpg" onclick="add('cover-comp');"/><hr>
<center>
<table class="table">
<thead>
<tr>
<th></th>
<th>竞赛名称</th>
<th>级别</th>
<th>奖项等级</th>
<th>人数</th>
<th>组内排序</th>
<th>分数</th>
<th>审核状态</th>
</tr>
</thead>
<tbody id="competition">
</tbody>
</table>
</center>
<div class="main_operate">
<img src="image/arrow.png" /><span class="table-operate" onclick="checkAll(this)"><input type="checkbox" title="全选">全选</span>
<i>选中项:</i>
<!--<span class="table-operate"><img src="image/edit.png" title="编辑"/>编辑</span>-->
<span class="table-operate" onclick="delScieTechComp(this)"><img src="image/delete.png" title="删除"/>删除</span>
</div>
<hr>
</div>
<div class="main-apply-table">
<span>学术论文</span><img src="image/add.jpg" onclick="add('cover-paper')"/><hr>
<center>
<table class="table">
<thead>
<tr>
<th></th>
<th>文章名称</th>
<th>发表级别</th>
<th>发表时间</th>
<th>IE,SCI收录</th>
<th>作者顺序</th>
<th>分数</th>
<th>审核状态</th>
</tr>
</thead>
<tbody id="paper">
</tbody>
</table>
</center>
<div class="main_operate">
<img src="image/arrow.png" /><span class="table-operate" onclick="checkAll(this)"><input type="checkbox" title="全选">全选</span>
<i>选中项:</i>
<!--<span class="table-operate"><img src="image/edit.png" title="编辑"/>编辑</span>-->
<span class="table-operate" onclick="delPaper(this)"><img src="image/delete.png" title="删除"/>删除</span>
</div>
<hr>
</div>
<div class="main-apply-table">
<span>专利发明</span><img src="image/add.jpg" onclick="add('cover-invention')"/><hr>
<center>
<table class="table">
<thead>
<tr>
<th></th>
<th>专利名称</th>
<th>专利类别</th>
<th>获批时间</th>
<th>专利号</th>
<th>排名</th>
<th>分数</th>
<th>审核状态</th>
</tr>
</thead>
<tbody id="invention">
</tbody>
</table>
</center>
<div class="main_operate">
<img src="image/arrow.png" /><span class="table-operate" onclick="checkAll(this)"><input type="checkbox" title="全选">全选</span>
<i>选中项:</i>
<!--<span class="table-operate"><img src="image/edit.png" title="编辑"/>编辑</span>-->
<span class="table-operate" onclick="delInvention(this)"><img src="image/delete.png" title="删除"/>删除</span>
</div>
<hr>
<div>
<div class="main-apply-table">
<span>创新项目</span><img src="image/add.jpg" onclick="add('cover-project')"/><hr>
<center>
<table class="table">
<thead>
<tr>
<th></th>
<th>项目名称</th>
<th>级别</th>
<th>评定等级</th>
<th>时间</th>
<th>组内排序</th>
<th>分数</th>
<th>审核状态</th>
</tr>
</thead>
<tbody id="project">
</tbody>
</table>
</center>
<div class="main_operate">
<img src="image/arrow.png" /><span class="table-operate" onclick="checkAll(this)"><input type="checkbox" title="全选">全选</span>
<i>选中项:</i>
<!--<span class="table-operate"><img src="image/edit.png" title="编辑"/>编辑</span>-->
<span class="table-operate" onclick="delScieTechProject(this)"><img src="image/delete.png" title="删除"/>删除</span>
</div>
<hr>
</div>
</div>
</div>
</body>
</html>