# Conflicts: # src/gdms/GlobalTimePoint.jsonzgl
commit
2b37cb7b39
@ -1,9 +1,9 @@
|
||||
{
|
||||
"teacher_choose_student_start_date":"",
|
||||
"student_choose_teacher_start_date": "",
|
||||
"choose_end_date": "",
|
||||
"opening_report_opinion_deadline_date": "",
|
||||
"finished_product_deadline_date": "",
|
||||
"finished_product_review_deadline_date": "",
|
||||
"reply_opition_deadline_date": ""
|
||||
"teacher_choose_student_start_date":"";,
|
||||
"student_choose_teacher_start_date": "",;
|
||||
"choose_end_date": "",;
|
||||
"opening_report_opinion_deadline_date": "",;
|
||||
"finished_product_deadline_date": "",;
|
||||
"finished_product_review_deadline_date": "",;
|
||||
"reply_opition_deadline_date": "";
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
package servlet;
|
||||
|
||||
import javax.servlet.ServletException;
|
||||
import javax.servlet.annotation.WebServlet;
|
||||
import javax.servlet.http.HttpServlet;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import java.io.IOException;
|
||||
|
||||
@WebServlet(name = "S_CollegeFillScoreOpinion")
|
||||
public class S_CollegeFillScoreOpinion extends HttpServlet {
|
||||
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
|
||||
|
||||
}
|
||||
|
||||
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
|
||||
|
||||
}
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
package servlet;
|
||||
|
||||
import javax.servlet.ServletException;
|
||||
import javax.servlet.annotation.WebServlet;
|
||||
import javax.servlet.http.HttpServlet;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import java.io.IOException;
|
||||
|
||||
@WebServlet(name = "S_MentorFillOpeningReportOpinion")
|
||||
public class S_MentorFillOpeningReportOpinion extends HttpServlet {
|
||||
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
|
||||
|
||||
}
|
||||
|
||||
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
|
||||
|
||||
}
|
||||
}
|
@ -1,15 +1,19 @@
|
||||
package servlet.Submit;
|
||||
package servlet;
|
||||
|
||||
import javax.servlet.ServletException;
|
||||
import javax.servlet.annotation.WebServlet;
|
||||
import javax.servlet.http.HttpServlet;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import java.io.IOException;
|
||||
|
||||
public class S_ScoreSubmit extends HttpServlet {
|
||||
@WebServlet(name = "S_MentorFillReview")
|
||||
public class S_MentorFillReview extends HttpServlet {
|
||||
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
|
||||
super.doPost(request, response);
|
||||
String score = request.getParameter("score");
|
||||
|
||||
}
|
||||
|
||||
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
|
||||
|
||||
}
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
package servlet;
|
||||
|
||||
import javax.servlet.ServletException;
|
||||
import javax.servlet.annotation.WebServlet;
|
||||
import javax.servlet.http.HttpServlet;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import java.io.IOException;
|
||||
|
||||
@WebServlet(name = "S_ReviewerFillReview")
|
||||
public class S_ReviewerFillReview extends HttpServlet {
|
||||
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
|
||||
|
||||
}
|
||||
|
||||
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
|
||||
|
||||
}
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
package servlet;
|
||||
|
||||
import javax.servlet.ServletException;
|
||||
import javax.servlet.annotation.WebServlet;
|
||||
import javax.servlet.http.HttpServlet;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import java.io.IOException;
|
||||
|
||||
@WebServlet(name = "S_SchoolFillScoreOpinion")
|
||||
public class S_SchoolFillScoreOpinion extends HttpServlet {
|
||||
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
|
||||
|
||||
}
|
||||
|
||||
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
|
||||
|
||||
}
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
package servlet;
|
||||
|
||||
import javax.servlet.ServletException;
|
||||
import javax.servlet.annotation.WebServlet;
|
||||
import javax.servlet.http.HttpServlet;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import java.io.IOException;
|
||||
|
||||
@WebServlet(name = "S_SecretaryFillOpeningReportRecord")
|
||||
public class S_SecretaryFillOpeningReportRecord extends HttpServlet {
|
||||
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
|
||||
|
||||
}
|
||||
|
||||
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
|
||||
|
||||
}
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
package servlet;
|
||||
|
||||
import javax.servlet.ServletException;
|
||||
import javax.servlet.annotation.WebServlet;
|
||||
import javax.servlet.http.HttpServlet;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import java.io.IOException;
|
||||
|
||||
@WebServlet(name = "S_SecretaryFillReplyRecord")
|
||||
public class S_SecretaryFillReplyRecord extends HttpServlet {
|
||||
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
|
||||
|
||||
}
|
||||
|
||||
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
|
||||
|
||||
}
|
||||
}
|
@ -1,12 +1,14 @@
|
||||
package servlet.Submit;
|
||||
package servlet;
|
||||
|
||||
import javax.servlet.ServletException;
|
||||
import javax.servlet.annotation.WebServlet;
|
||||
import javax.servlet.http.HttpServlet;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import java.io.IOException;
|
||||
|
||||
public class S_StudentFillTopicInformation extends HttpServlet {
|
||||
@WebServlet("/student-fill-graduation-design-information")
|
||||
public class S_StudentFillGraduationDesignInformation extends HttpServlet {
|
||||
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
|
||||
super.doPost(request, response);
|
||||
String content1=new String(request.getParameter("text").getBytes("ISO8859-1"),"UTF-8");
|
@ -0,0 +1,19 @@
|
||||
package servlet;
|
||||
|
||||
import javax.servlet.ServletException;
|
||||
import javax.servlet.annotation.WebServlet;
|
||||
import javax.servlet.http.HttpServlet;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import java.io.IOException;
|
||||
|
||||
@WebServlet(name = "S_StudentUploadFinishedProduct")
|
||||
public class S_StudentUploadFinishedProduct extends HttpServlet {
|
||||
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
|
||||
|
||||
}
|
||||
|
||||
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
|
||||
|
||||
}
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
package servlet;
|
||||
|
||||
import javax.servlet.ServletException;
|
||||
import javax.servlet.annotation.WebServlet;
|
||||
import javax.servlet.http.HttpServlet;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import java.io.IOException;
|
||||
|
||||
@WebServlet(name = "S_TeacherTeamFillOpeningReportOpinion")
|
||||
public class S_TeacherTeamFillOpeningReportOpinion extends HttpServlet {
|
||||
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
|
||||
|
||||
}
|
||||
|
||||
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
|
||||
|
||||
}
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
package servlet;
|
||||
|
||||
import javax.servlet.ServletException;
|
||||
import javax.servlet.annotation.WebServlet;
|
||||
import javax.servlet.http.HttpServlet;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import java.io.IOException;
|
||||
|
||||
@WebServlet(name = "S_TeacherFillTeamFillScoreOpinion")
|
||||
public class S_TeacherFillTeamFillScoreOpinion extends HttpServlet {
|
||||
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
|
||||
|
||||
}
|
||||
|
||||
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
|
||||
|
||||
}
|
||||
}
|
@ -0,0 +1,4 @@
|
||||
package servlet;
|
||||
|
||||
public interface Utils {
|
||||
}
|
@ -0,0 +1,94 @@
|
||||
.blank-frame-sub{
|
||||
width: 100%;
|
||||
min-height: 825px;
|
||||
border: 1px solid rgba(255, 255, 255, 0);
|
||||
}
|
||||
.sub-msg{
|
||||
background-color: white;
|
||||
width: 960px;
|
||||
min-height: 400px;
|
||||
border-radius: 5px;
|
||||
margin: 100px 10px 0px 18px;
|
||||
border: 1px solid rgba(0, 0, 0, 0.23);
|
||||
}
|
||||
.sub-fill-frame{
|
||||
height: 80px;
|
||||
width: 940px;
|
||||
margin: 20px 10px;
|
||||
}
|
||||
.sub-fill-frame input{
|
||||
float: left;
|
||||
margin-right: 10px;
|
||||
padding-left: 12px;
|
||||
background-color: #f5f5f5;
|
||||
border-radius: 5px;
|
||||
height: 40px;
|
||||
width: 300px;
|
||||
border:1px solid rgba(0, 0, 0, 0.27);
|
||||
}
|
||||
.sub-fill-frame input:hover{
|
||||
border:1px solid rgb(120, 190, 255);
|
||||
background-color: #ffffff;
|
||||
}
|
||||
.sub-fill-frame input:focus{
|
||||
border:1px solid rgb(120, 190, 255);
|
||||
background-color: #ffffff;
|
||||
}
|
||||
.sub-fill-frame select{
|
||||
appearance:none;
|
||||
-moz-appearance:none;
|
||||
-webkit-appearance:none;
|
||||
width: 150px;
|
||||
height: 40px;
|
||||
color: rgba(0,0,0,0.58);
|
||||
border:1px solid rgba(0, 0, 0, 0.41);
|
||||
padding-left: 12px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
.sub-scb-text{
|
||||
width: 700px;
|
||||
height: 120px;
|
||||
border-radius: 10px;
|
||||
border: 1px solid rgba(0, 0, 0, 0.2);
|
||||
resize: none;
|
||||
padding: 10px 10px;
|
||||
background-color: #f4f4f4;
|
||||
}
|
||||
.sub-scb-text:focus{
|
||||
border: 1px solid rgb(55, 157, 255);
|
||||
background-color: white;
|
||||
}
|
||||
.sub-scb-text:hover{
|
||||
background-color: white;
|
||||
border: 1px solid rgb(55, 157, 255);
|
||||
}
|
||||
.sub-fill-frame.sub-scb{
|
||||
height:120px ;
|
||||
}
|
||||
.sub-tips{
|
||||
text-align: right;
|
||||
line-height: 40px;
|
||||
margin-right: 20px;
|
||||
width: 150px;
|
||||
height: 100%;
|
||||
float: left;
|
||||
}
|
||||
.sub-input-button{
|
||||
width: 100px;
|
||||
height: 40px;
|
||||
color: white;
|
||||
background-color: #d74144;
|
||||
border-radius: 5px;
|
||||
margin: 20px 430px;
|
||||
border: 0px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.sub-input-button:hover{
|
||||
background-color: #eb4548;
|
||||
}
|
||||
.sub-fill-frame select:focus{
|
||||
border: 1px solid rgb(55, 157, 255);
|
||||
}
|
||||
.sub-fill-frame select:hover{
|
||||
border: 1px solid rgb(55, 157, 255);
|
||||
}
|
After Width: | Height: | Size: 334 B |
@ -0,0 +1,65 @@
|
||||
<%--
|
||||
Created by IntelliJ IDEA.
|
||||
User: lenovo
|
||||
Date: 2019/1/14
|
||||
Time: 15:53
|
||||
To change this template use File | Settings | File Templates.
|
||||
--%>
|
||||
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
||||
<html>
|
||||
<head>
|
||||
<title>填写选题信息</title>
|
||||
<link type="text/css" rel="stylesheet" href="cssFile/blank-style.css">
|
||||
<script type="text/javascript" src="jsFile/jquery-3.3.1.js"></script>
|
||||
<script type="text/javascript" src="jsFile/sub-msg-input.js"></script>
|
||||
</head>
|
||||
</bod>
|
||||
<div class="updated">
|
||||
<div class="blank-frame-sub">
|
||||
<div class="fill-top-blank"><div class="model-info">填写选题信息</div></div>
|
||||
|
||||
<div class="sub-msg">
|
||||
<form>
|
||||
<div class="sub-fill-frame sub-name">
|
||||
<div class="sub-tips">论文题目:</div>
|
||||
<input class="sub-input" name="chinese_name" value="" type="text"
|
||||
placeholder="中文名">
|
||||
<input class="sub-input" name="english_name" type="text" value=""
|
||||
placeholder="英文名">
|
||||
</div>
|
||||
<div class="sub-fill-frame sub-class">
|
||||
<div class="sub-tips">题目类别:</div>
|
||||
<input class="sub-input" name="type_of_topic" value=""
|
||||
placeholder="请输入类别">
|
||||
</div>
|
||||
<div class="sub-fill-frame sub-src">
|
||||
<div class="sub-tips">题目来源:</div>
|
||||
<select class="sub-select" name="source_of_design">
|
||||
<option value="">请选择来源</option>
|
||||
<option value="教师科研课题">教师科研课题</option>
|
||||
<option value="企事业单位委托课题">企事业单位委托课题</option>
|
||||
<option value="自拟题目">自拟题目</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="sub-fill-frame sub-ct">
|
||||
<div class="sub-tips">题目性质:</div>
|
||||
<select class="sub-select" name="nature_of_design">
|
||||
<option value="">请选择题目性质</option>
|
||||
<option value="教学研究">教学研究</option>
|
||||
<option value="应用研究">应用研究</option>
|
||||
<option value="自拟题目">基础研究</option>
|
||||
<option value="其他">其他</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="sub-fill-frame sub-scb">
|
||||
<div class="sub-tips">题目描述:</div>
|
||||
<textarea class="sub-scb-text" placeholder="请填写题目描述" name="description_of_topic"></textarea>
|
||||
</div>
|
||||
<input class="sub-input-button" type="button" value="提交">
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,33 @@
|
||||
$(document).ready(
|
||||
function () {
|
||||
$(document).off('click',sendSub).on('click','.sub-input-button',sendSub);
|
||||
}
|
||||
)
|
||||
function sendSub() {
|
||||
var Url3='testfrom.jsp';
|
||||
if( $('.sub-input').eq(0).val()==''|| $('.sub-input').eq(1).val()==''
|
||||
|| $('.sub-input').eq(2).val()=='')
|
||||
{
|
||||
alert("请将信息填写完整");
|
||||
return;
|
||||
}
|
||||
|
||||
if( $('.sub-select').eq(0).val()==''|| $('.sub-select').eq(1).val()=='')
|
||||
{
|
||||
alert("请将信息填写完整");
|
||||
return;
|
||||
}
|
||||
if($('.sub-scb-text').val()=='')
|
||||
{
|
||||
alert("请将信息填写完整");
|
||||
return;
|
||||
}
|
||||
var fillDate=$(this).parent().serialize();
|
||||
$.post(Url3,fillDate,function(data,status) {
|
||||
if(status=='success')
|
||||
{
|
||||
alert("提交成功");
|
||||
}
|
||||
}
|
||||
);
|
||||
}
|
Loading…
Reference in new issue