Compare commits
No commits in common. 'main' and 'master3' have entirely different histories.
@ -1,8 +0,0 @@
|
|||||||
# 默认忽略的文件
|
|
||||||
/shelf/
|
|
||||||
/workspace.xml
|
|
||||||
# 基于编辑器的 HTTP 客户端请求
|
|
||||||
/httpRequests/
|
|
||||||
# Datasource local storage ignored files
|
|
||||||
/dataSources/
|
|
||||||
/dataSources.local.xml
|
|
@ -1,6 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_20" project-jdk-name="23" project-jdk-type="JavaSDK">
|
|
||||||
<output url="file://$PROJECT_DIR$/out" />
|
|
||||||
</component>
|
|
||||||
</project>
|
|
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="ProjectModuleManager">
|
|
||||||
<modules>
|
|
||||||
<module fileurl="file://$PROJECT_DIR$/.idea/remotebelongstous.iml" filepath="$PROJECT_DIR$/.idea/remotebelongstous.iml" />
|
|
||||||
</modules>
|
|
||||||
</component>
|
|
||||||
</project>
|
|
@ -1,9 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<module type="JAVA_MODULE" version="4">
|
|
||||||
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
|
||||||
<exclude-output />
|
|
||||||
<content url="file://$MODULE_DIR$" />
|
|
||||||
<orderEntry type="inheritedJdk" />
|
|
||||||
<orderEntry type="sourceFolder" forTests="false" />
|
|
||||||
</component>
|
|
||||||
</module>
|
|
@ -1,6 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="VcsDirectoryMappings">
|
|
||||||
<mapping directory="" vcs="Git" />
|
|
||||||
</component>
|
|
||||||
</project>
|
|
@ -1,54 +0,0 @@
|
|||||||
package com.shanzhu.oe.entity;
|
|
||||||
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 管理员
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
public class Admin {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 管理员id
|
|
||||||
*/
|
|
||||||
private Integer adminId;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 管理员名字
|
|
||||||
*/
|
|
||||||
private String adminName;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 性别
|
|
||||||
*/
|
|
||||||
private String sex;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 电话
|
|
||||||
*/
|
|
||||||
private String tel;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 邮箱
|
|
||||||
*/
|
|
||||||
private String email;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 密码
|
|
||||||
*/
|
|
||||||
private String pwd;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 身份证
|
|
||||||
*/
|
|
||||||
private String cardId;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 角色
|
|
||||||
*/
|
|
||||||
private String role;
|
|
||||||
|
|
||||||
}
|
|
@ -1,79 +0,0 @@
|
|||||||
package com.shanzhu.oe.entity;
|
|
||||||
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 考试管理
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
public class ExamManage {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 考试编号
|
|
||||||
*/
|
|
||||||
private Integer examCode;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 该次考试介绍
|
|
||||||
*/
|
|
||||||
private String description;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 课程名称
|
|
||||||
*/
|
|
||||||
private String source;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 试卷编号
|
|
||||||
*/
|
|
||||||
private Integer paperId;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 考试日期
|
|
||||||
*/
|
|
||||||
private String examDate;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 持续时长
|
|
||||||
*/
|
|
||||||
private Integer totalTime;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 年级
|
|
||||||
*/
|
|
||||||
private String grade;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 学期
|
|
||||||
*/
|
|
||||||
private String term;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 专业
|
|
||||||
*/
|
|
||||||
private String major;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 学院
|
|
||||||
*/
|
|
||||||
private String institute;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 总分
|
|
||||||
*/
|
|
||||||
private Integer totalScore;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 考试类型
|
|
||||||
*/
|
|
||||||
private String type;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 考生须知
|
|
||||||
*/
|
|
||||||
private String tips;
|
|
||||||
|
|
||||||
}
|
|
@ -1,54 +0,0 @@
|
|||||||
package com.shanzhu.oe.entity;
|
|
||||||
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 填空题
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
public class FillQuestion {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 试题编号
|
|
||||||
*/
|
|
||||||
private Integer questionId;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 考试科目
|
|
||||||
*/
|
|
||||||
private String subject;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 试题内容
|
|
||||||
*/
|
|
||||||
private String question;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 正确答案
|
|
||||||
*/
|
|
||||||
private String answer;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 分数
|
|
||||||
*/
|
|
||||||
private Integer score;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 难度等级
|
|
||||||
*/
|
|
||||||
private String level;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 难度等级
|
|
||||||
*/
|
|
||||||
private String section;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 题目解析
|
|
||||||
*/
|
|
||||||
private String analysis;
|
|
||||||
|
|
||||||
}
|
|
@ -1,54 +0,0 @@
|
|||||||
package com.shanzhu.oe.entity;
|
|
||||||
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 判断题
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
public class JudgeQuestion {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 试题编号
|
|
||||||
*/
|
|
||||||
private Integer questionId;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 考试科目
|
|
||||||
*/
|
|
||||||
private String subject;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 试题内容
|
|
||||||
*/
|
|
||||||
private String question;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 正确答案
|
|
||||||
*/
|
|
||||||
private String answer;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 难度等级
|
|
||||||
*/
|
|
||||||
private String level;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 所属章节
|
|
||||||
*/
|
|
||||||
private String section;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 分数
|
|
||||||
*/
|
|
||||||
private Integer score;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 题目解析
|
|
||||||
*/
|
|
||||||
private String analysis;
|
|
||||||
|
|
||||||
}
|
|
@ -1,74 +0,0 @@
|
|||||||
package com.shanzhu.oe.entity;
|
|
||||||
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 选择题
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
public class MultiQuestion {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 实体编号
|
|
||||||
*/
|
|
||||||
private Integer questionId;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 考试科目
|
|
||||||
*/
|
|
||||||
private String subject;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 所属章节
|
|
||||||
*/
|
|
||||||
private String section;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 选项A
|
|
||||||
*/
|
|
||||||
private String answerA;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 选项B
|
|
||||||
*/
|
|
||||||
private String answerB;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 选项C
|
|
||||||
*/
|
|
||||||
private String answerC;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 选项D
|
|
||||||
*/
|
|
||||||
private String answerD;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 问题
|
|
||||||
*/
|
|
||||||
private String question;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 难度等级
|
|
||||||
*/
|
|
||||||
private String level;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 正确答案
|
|
||||||
*/
|
|
||||||
private String rightAnswer;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 题目解析
|
|
||||||
*/
|
|
||||||
private String analysis;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 分数
|
|
||||||
*/
|
|
||||||
private Integer score;
|
|
||||||
|
|
||||||
}
|
|
@ -1,33 +0,0 @@
|
|||||||
package com.shanzhu.oe.entity;
|
|
||||||
|
|
||||||
import lombok.AllArgsConstructor;
|
|
||||||
import lombok.Data;
|
|
||||||
import lombok.NoArgsConstructor;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 试卷
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
@AllArgsConstructor
|
|
||||||
@NoArgsConstructor
|
|
||||||
public class PaperManage {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 试卷id
|
|
||||||
*/
|
|
||||||
private Integer paperId;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 题目类型
|
|
||||||
*/
|
|
||||||
private Integer questionType;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 题目编号
|
|
||||||
*/
|
|
||||||
private Integer questionId;
|
|
||||||
|
|
||||||
}
|
|
@ -1,38 +0,0 @@
|
|||||||
package com.shanzhu.oe.entity;
|
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
import java.util.Date;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 回复
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
public class Replay {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 留言id
|
|
||||||
*/
|
|
||||||
private Integer messageId;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 回复id
|
|
||||||
*/
|
|
||||||
private Integer replayId;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 回复内容
|
|
||||||
*/
|
|
||||||
private String replay;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 回复时间
|
|
||||||
*/
|
|
||||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
||||||
private Date replayTime;
|
|
||||||
|
|
||||||
}
|
|
@ -1,55 +0,0 @@
|
|||||||
package com.shanzhu.oe.entity;
|
|
||||||
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 考试成绩
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
public class Score {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 考试编号
|
|
||||||
*/
|
|
||||||
private Integer examCode;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 学号
|
|
||||||
*/
|
|
||||||
private Integer studentId;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 课程名称
|
|
||||||
*/
|
|
||||||
private String subject;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 平时成绩
|
|
||||||
*/
|
|
||||||
private Integer ptScore;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 期末成绩
|
|
||||||
*/
|
|
||||||
private Integer etScore;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 成绩分数
|
|
||||||
*/
|
|
||||||
private Integer score;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 成绩编号
|
|
||||||
*/
|
|
||||||
private Integer scoreId;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 答题日期
|
|
||||||
*/
|
|
||||||
private String answerDate;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
@ -1,73 +0,0 @@
|
|||||||
package com.shanzhu.oe.entity;
|
|
||||||
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 学生
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
public class Student {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 学生id
|
|
||||||
*/
|
|
||||||
private Integer studentId;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 学生姓名
|
|
||||||
*/
|
|
||||||
private String studentName;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 年级
|
|
||||||
*/
|
|
||||||
private String grade;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 专业
|
|
||||||
*/
|
|
||||||
private String major;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 班级
|
|
||||||
*/
|
|
||||||
private String clazz;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 学院
|
|
||||||
*/
|
|
||||||
private String institute;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 性别
|
|
||||||
*/
|
|
||||||
private String sex;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 电话
|
|
||||||
*/
|
|
||||||
private String tel;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 邮箱
|
|
||||||
*/
|
|
||||||
private String email;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 密码
|
|
||||||
*/
|
|
||||||
private String pwd;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 身份证
|
|
||||||
*/
|
|
||||||
private String cardId;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 角色
|
|
||||||
*/
|
|
||||||
private String role;
|
|
||||||
}
|
|
@ -1,64 +0,0 @@
|
|||||||
package com.shanzhu.oe.entity;
|
|
||||||
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 教师
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
public class Teacher {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 教师id
|
|
||||||
*/
|
|
||||||
private Integer teacherId;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 教师名字
|
|
||||||
*/
|
|
||||||
private String teacherName;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 学院
|
|
||||||
*/
|
|
||||||
private String institute;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 性别
|
|
||||||
*/
|
|
||||||
private String sex;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 电话
|
|
||||||
*/
|
|
||||||
private String tel;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 邮箱
|
|
||||||
*/
|
|
||||||
private String email;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 密码
|
|
||||||
*/
|
|
||||||
private String pwd;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 身份证
|
|
||||||
*/
|
|
||||||
private String cardId;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 职称
|
|
||||||
*/
|
|
||||||
private String type;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 角色
|
|
||||||
*/
|
|
||||||
private String role;
|
|
||||||
|
|
||||||
}
|
|
@ -1,63 +0,0 @@
|
|||||||
package com.shanzhu.oe.service;
|
|
||||||
|
|
||||||
import com.shanzhu.oe.entity.Admin;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 管理员 服务层
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
public interface AdminService {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 查询所有管理员
|
|
||||||
*
|
|
||||||
* @return 管理员
|
|
||||||
*/
|
|
||||||
List<Admin> findAll();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过管理员id查询
|
|
||||||
*
|
|
||||||
* @param adminId 管理员id
|
|
||||||
* @return 管理员
|
|
||||||
*/
|
|
||||||
Admin findById(Integer adminId);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过管理员id删除
|
|
||||||
*
|
|
||||||
* @param adminId 管理员id
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
Integer deleteById(Integer adminId);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 更新管理员
|
|
||||||
*
|
|
||||||
* @param admin 管理员信息
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
Integer update(Admin admin);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 添加管理员
|
|
||||||
*
|
|
||||||
* @param admin 管理员信息
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
Integer add(Admin admin);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 更新密码
|
|
||||||
*
|
|
||||||
* @param adminId 管理员id
|
|
||||||
* @param newPsw 新密码
|
|
||||||
* @param oldPsw 旧密码
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
Object resetPsw(Integer adminId, String newPsw, String oldPsw);
|
|
||||||
}
|
|
@ -1,35 +0,0 @@
|
|||||||
package com.shanzhu.oe.service;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
||||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
||||||
import com.shanzhu.oe.vo.AnswerVO;
|
|
||||||
import com.shanzhu.oe.vo.QuestionVO;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 题库 服务层
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
public interface AnswerService {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 查询题库 分页
|
|
||||||
*
|
|
||||||
* @param page 分页对象
|
|
||||||
* @param subject 学科
|
|
||||||
* @param section 章节
|
|
||||||
* @param question 问题
|
|
||||||
* @return 题目
|
|
||||||
*/
|
|
||||||
IPage<AnswerVO> findAll(Page<AnswerVO> page, String subject, String section, String question);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 根据类型和id获取题目
|
|
||||||
*
|
|
||||||
* @param type 类型
|
|
||||||
* @param questionId 题目id
|
|
||||||
* @return 题目信息
|
|
||||||
*/
|
|
||||||
QuestionVO findByIdAndType(String type, Long questionId);
|
|
||||||
}
|
|
@ -1,69 +0,0 @@
|
|||||||
package com.shanzhu.oe.service;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
||||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
||||||
import com.shanzhu.oe.entity.ExamManage;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 考试管理 服务层
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
public interface ExamManageService {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 查询所有考试
|
|
||||||
*
|
|
||||||
* @return 考试列表
|
|
||||||
*/
|
|
||||||
List<ExamManage> findAll();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 查询考试 分页
|
|
||||||
*
|
|
||||||
* @param page 分页对象
|
|
||||||
* @return 考试列表
|
|
||||||
*/
|
|
||||||
IPage<ExamManage> findAll(Page<ExamManage> page);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 根据考试编号查询考试信息
|
|
||||||
*
|
|
||||||
* @param examCode 考试编好
|
|
||||||
* @return 考试信息
|
|
||||||
*/
|
|
||||||
ExamManage findById(Integer examCode);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 根据考试编号删除
|
|
||||||
*
|
|
||||||
* @param examCode 考试编号
|
|
||||||
*/
|
|
||||||
Integer delete(Integer examCode);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 更新考试信息
|
|
||||||
*
|
|
||||||
* @param examManage 考试信息
|
|
||||||
*/
|
|
||||||
Integer update(ExamManage examManage);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 添加考试信息
|
|
||||||
*
|
|
||||||
* @param examManage 考试信息
|
|
||||||
*/
|
|
||||||
Integer add(ExamManage examManage);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 查询最后一条记录的paperId,返回给前端达到自增效果
|
|
||||||
*
|
|
||||||
* @return 最后一条记录
|
|
||||||
*/
|
|
||||||
ExamManage findOnlyPaperId();
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
@ -1,55 +0,0 @@
|
|||||||
package com.shanzhu.oe.service;
|
|
||||||
|
|
||||||
import com.shanzhu.oe.entity.FillQuestion;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 填空题 服务层
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
public interface FillQuestionService {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过试卷id查询问题
|
|
||||||
*
|
|
||||||
* @param paperId 试卷id
|
|
||||||
* @return 问题
|
|
||||||
*/
|
|
||||||
List<FillQuestion> findByIdAndType(Integer paperId);
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 查询最后一条填空题
|
|
||||||
*
|
|
||||||
* @return 最后一条填空题
|
|
||||||
*/
|
|
||||||
FillQuestion findOnlyQuestionId();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 添加填空题
|
|
||||||
*
|
|
||||||
* @param fillQuestion 填空题内容
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
Integer add(FillQuestion fillQuestion);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过学科查询
|
|
||||||
*
|
|
||||||
* @param subject 学科查询
|
|
||||||
* @param pageNo 分页数
|
|
||||||
* @return 题目
|
|
||||||
*/
|
|
||||||
List<Integer> findBySubject(String subject,Integer pageNo);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 编辑填空题
|
|
||||||
*
|
|
||||||
* @param fillQuestion 填空题内容
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
Integer edit(FillQuestion fillQuestion);
|
|
||||||
}
|
|
@ -1,54 +0,0 @@
|
|||||||
package com.shanzhu.oe.service;
|
|
||||||
|
|
||||||
import com.shanzhu.oe.entity.JudgeQuestion;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 判断题 服务层
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
public interface JudgeQuestionService {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过试卷id查询问题
|
|
||||||
*
|
|
||||||
* @param paperId 试卷id
|
|
||||||
* @return 问题
|
|
||||||
*/
|
|
||||||
List<JudgeQuestion> findByIdAndType(Integer paperId);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 查询最后一个判断题id
|
|
||||||
*
|
|
||||||
* @return 最后一个判断题
|
|
||||||
*/
|
|
||||||
JudgeQuestion findOnlyQuestionId();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 添加判断题
|
|
||||||
*
|
|
||||||
* @param judgeQuestion 判断题信息
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
Integer add(JudgeQuestion judgeQuestion);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过学科查询
|
|
||||||
*
|
|
||||||
* @param subject 学科
|
|
||||||
* @param pageNo 分页数
|
|
||||||
* @return 题目id
|
|
||||||
*/
|
|
||||||
List<Integer> findBySubject(String subject,Integer pageNo);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 编辑判断题
|
|
||||||
*
|
|
||||||
* @param judgeQuestion 判断题
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
Integer edit(JudgeQuestion judgeQuestion);
|
|
||||||
}
|
|
@ -1,41 +0,0 @@
|
|||||||
package com.shanzhu.oe.service;
|
|
||||||
|
|
||||||
import com.shanzhu.oe.entity.Admin;
|
|
||||||
import com.shanzhu.oe.entity.Student;
|
|
||||||
import com.shanzhu.oe.entity.Teacher;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 用户登录 服务层
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
public interface LoginService {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 管理员用户登录
|
|
||||||
*
|
|
||||||
* @param username 用户名
|
|
||||||
* @param password 密码
|
|
||||||
* @return 登录用户信息
|
|
||||||
*/
|
|
||||||
Admin adminLogin(Integer username, String password);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 教师用户登录
|
|
||||||
*
|
|
||||||
* @param username 用户名
|
|
||||||
* @param password 密码
|
|
||||||
* @return 登录用户信息
|
|
||||||
*/
|
|
||||||
Teacher teacherLogin(Integer username, String password);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 学生用户登录
|
|
||||||
*
|
|
||||||
* @param username 用户名
|
|
||||||
* @param password 密码
|
|
||||||
* @return 登录用户信息
|
|
||||||
*/
|
|
||||||
Student studentLogin(Integer username, String password);
|
|
||||||
}
|
|
@ -1,55 +0,0 @@
|
|||||||
package com.shanzhu.oe.service;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
||||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
||||||
import com.shanzhu.oe.entity.Message;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 留言 服务层
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
public interface MessageService {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 留言查询 分页
|
|
||||||
*
|
|
||||||
* @param page 分页内容
|
|
||||||
* @return 留言数据
|
|
||||||
*/
|
|
||||||
IPage<Message> findPage(Page page);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过id查询留言
|
|
||||||
*
|
|
||||||
* @param id 留言id
|
|
||||||
* @return 留言内容
|
|
||||||
*/
|
|
||||||
Message findById(Integer id);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 删除留言
|
|
||||||
*
|
|
||||||
* @param id 留言id
|
|
||||||
* @return 删除成功数量
|
|
||||||
*/
|
|
||||||
Integer delete(Integer id);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 更新留言
|
|
||||||
*
|
|
||||||
* @param message 留言信息
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
Integer update(Message message);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 添加留言
|
|
||||||
*
|
|
||||||
* @param message 留言信息
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
Integer add(Message message);
|
|
||||||
}
|
|
@ -1,54 +0,0 @@
|
|||||||
package com.shanzhu.oe.service;
|
|
||||||
|
|
||||||
import com.shanzhu.oe.entity.MultiQuestion;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 选择题 服务层
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
public interface MultiQuestionService {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过试卷id 查询试卷
|
|
||||||
*
|
|
||||||
* @param paperId 试卷id
|
|
||||||
* @return 问题
|
|
||||||
*/
|
|
||||||
List<MultiQuestion> findByIdAndType(Integer paperId);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过id查询选择题
|
|
||||||
*
|
|
||||||
* @return 选择题
|
|
||||||
*/
|
|
||||||
MultiQuestion findOnlyQuestionId();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 添加选择题
|
|
||||||
*
|
|
||||||
* @param multiQuestion 选择题信息
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
Integer add(MultiQuestion multiQuestion);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过学科查询
|
|
||||||
*
|
|
||||||
* @param subject 学科
|
|
||||||
* @param pageNo 分页数
|
|
||||||
* @return 题目id
|
|
||||||
*/
|
|
||||||
List<Integer> findBySubject(String subject,Integer pageNo);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 编辑选择题
|
|
||||||
*
|
|
||||||
* @param multiQuestion 选择题信息
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
Integer edit(MultiQuestion multiQuestion);
|
|
||||||
}
|
|
@ -1,46 +0,0 @@
|
|||||||
package com.shanzhu.oe.service;
|
|
||||||
|
|
||||||
import com.shanzhu.oe.entity.Replay;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 回复 服务层
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
public interface ReplayService {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过留言id查询回复
|
|
||||||
*
|
|
||||||
* @param messageId 留言id
|
|
||||||
* @return 回复
|
|
||||||
*/
|
|
||||||
List<Replay> findAllById(Integer messageId);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 删除回复
|
|
||||||
*
|
|
||||||
* @param replayId 回复id
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
Integer delete(Integer replayId);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 更新回复
|
|
||||||
*
|
|
||||||
* @param replay 回复内容
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
Integer update(Replay replay);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 添加回复
|
|
||||||
*
|
|
||||||
* @param replay 回复内容
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
Integer add(Replay replay);
|
|
||||||
}
|
|
@ -1,56 +0,0 @@
|
|||||||
package com.shanzhu.oe.service;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
||||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
||||||
import com.shanzhu.oe.entity.Score;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 分数 服务层
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
public interface ScoreService {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 添加学生成绩
|
|
||||||
*
|
|
||||||
* @param score 学生成绩
|
|
||||||
* @return 考试成绩
|
|
||||||
*/
|
|
||||||
Integer add(Score score);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 查询所有考试成绩
|
|
||||||
*
|
|
||||||
* @return 考试分数
|
|
||||||
*/
|
|
||||||
List<Score> findAll();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 查询考试成绩 分页
|
|
||||||
*
|
|
||||||
* @param page 分页对象
|
|
||||||
* @param studentId 学生id
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
IPage<Score> findById(Page page, Integer studentId);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 查询考试成绩 不分页
|
|
||||||
*
|
|
||||||
* @param studentId 学生id
|
|
||||||
* @return 考试成绩
|
|
||||||
*/
|
|
||||||
List<Score> findById(Integer studentId);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过考试编号 查询学生成绩
|
|
||||||
*
|
|
||||||
* @param examCode 考试编号
|
|
||||||
* @return 考试成绩
|
|
||||||
*/
|
|
||||||
List<Score> findByExamCode(Integer examCode);
|
|
||||||
}
|
|
@ -1,72 +0,0 @@
|
|||||||
package com.shanzhu.oe.service;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
||||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
||||||
import com.shanzhu.oe.entity.Student;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 学生 服务层
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
public interface StudentService {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 查询学生 分页
|
|
||||||
*
|
|
||||||
* @param page 分页对象
|
|
||||||
* @param name 学生姓名
|
|
||||||
* @param grade 班级
|
|
||||||
* @param tel 电话
|
|
||||||
* @param institute 学院
|
|
||||||
* @param major 专业
|
|
||||||
* @param clazz 班级
|
|
||||||
* @return 学生列表
|
|
||||||
*/
|
|
||||||
IPage<Student> findAll(
|
|
||||||
Page<Student> page, String name,
|
|
||||||
String grade, String tel,
|
|
||||||
String institute, String major, String clazz
|
|
||||||
);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过学生id查询学生
|
|
||||||
*
|
|
||||||
* @param studentId 学生id
|
|
||||||
* @return 学生
|
|
||||||
*/
|
|
||||||
Student findById(Integer studentId);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 删除学生
|
|
||||||
*
|
|
||||||
* @param studentId 学生id
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
Integer deleteById(Integer studentId);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 更新学生
|
|
||||||
*
|
|
||||||
* @param student 学生信息
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
Integer update(Student student);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 添加学生
|
|
||||||
*
|
|
||||||
* @param student 学生信息
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
Integer add(Student student);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 更新密码
|
|
||||||
*
|
|
||||||
* @param student 学生信息
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
Integer updatePwd(Student student);
|
|
||||||
}
|
|
@ -1,58 +0,0 @@
|
|||||||
package com.shanzhu.oe.service;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
||||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
||||||
import com.shanzhu.oe.entity.Teacher;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 教师 服务层
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
public interface TeacherService {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 查询教师 分页
|
|
||||||
*
|
|
||||||
* @param page 分页对象
|
|
||||||
* @return 教师列表
|
|
||||||
*/
|
|
||||||
IPage<Teacher> findAll(Page<Teacher> page);
|
|
||||||
|
|
||||||
List<Teacher> findAll();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过教师id查询
|
|
||||||
*
|
|
||||||
* @param teacherId 教师id
|
|
||||||
* @return 教师
|
|
||||||
*/
|
|
||||||
Teacher findById(Integer teacherId);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 删除教师
|
|
||||||
*
|
|
||||||
* @param teacherId 教师id
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
Integer deleteById(Integer teacherId);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 更新教师
|
|
||||||
*
|
|
||||||
* @param teacher 教师信息
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
Integer update(Teacher teacher);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 添加教师
|
|
||||||
*
|
|
||||||
* @param teacher 教师信息
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
Integer add(Teacher teacher);
|
|
||||||
}
|
|
@ -1,98 +0,0 @@
|
|||||||
package com.shanzhu.oe.serviceimpl;
|
|
||||||
|
|
||||||
import com.shanzhu.oe.entity.Admin;
|
|
||||||
import com.shanzhu.oe.mapper.AdminMapper;
|
|
||||||
import com.shanzhu.oe.service.AdminService;
|
|
||||||
import lombok.RequiredArgsConstructor;
|
|
||||||
import org.springframework.stereotype.Service;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 管理员 服务层实现类
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
@Service
|
|
||||||
@RequiredArgsConstructor
|
|
||||||
public class AdminServiceImpl implements AdminService {
|
|
||||||
|
|
||||||
private final AdminMapper adminMapper;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 查询所有管理员
|
|
||||||
*
|
|
||||||
* @return 管理员
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public List<Admin> findAll() {
|
|
||||||
return adminMapper.findAll();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过管理员id查询
|
|
||||||
*
|
|
||||||
* @param adminId 管理员id
|
|
||||||
* @return 管理员
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public Admin findById(Integer adminId) {
|
|
||||||
return adminMapper.findById(adminId);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过管理员id删除
|
|
||||||
*
|
|
||||||
* @param adminId 管理员id
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public Integer deleteById(Integer adminId) {
|
|
||||||
return adminMapper.deleteById(adminId);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 更新管理员
|
|
||||||
*
|
|
||||||
* @param admin 管理员信息
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public Integer update(Admin admin) {
|
|
||||||
return adminMapper.update(admin);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 添加管理员
|
|
||||||
*
|
|
||||||
* @param admin 管理员信息
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public Integer add(Admin admin) {
|
|
||||||
return adminMapper.add(admin);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 更新密码
|
|
||||||
*
|
|
||||||
* @param adminId 管理员id
|
|
||||||
* @param newPsw 新密码
|
|
||||||
* @param oldPsw 旧密码
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public Object resetPsw(Integer adminId, String newPsw, String oldPsw) {
|
|
||||||
Admin admin = findById(adminId);
|
|
||||||
|
|
||||||
if(!admin.getPwd().equals(oldPsw)) {
|
|
||||||
return "原密码错误";
|
|
||||||
}
|
|
||||||
admin.setPwd(String.valueOf(newPsw));
|
|
||||||
update(admin);
|
|
||||||
return Boolean.TRUE;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
@ -1,65 +0,0 @@
|
|||||||
package com.shanzhu.oe.serviceimpl;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
||||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
||||||
import com.shanzhu.oe.mapper.AnswerMapper;
|
|
||||||
import com.shanzhu.oe.service.AnswerService;
|
|
||||||
import com.shanzhu.oe.vo.AnswerVO;
|
|
||||||
import com.shanzhu.oe.vo.QuestionVO;
|
|
||||||
import lombok.RequiredArgsConstructor;
|
|
||||||
import org.springframework.stereotype.Service;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 题库 服务层实现类
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
@Service
|
|
||||||
@RequiredArgsConstructor
|
|
||||||
public class AnswerServiceImpl implements AnswerService {
|
|
||||||
|
|
||||||
private final AnswerMapper answerMapper;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 查询题库 分页
|
|
||||||
*
|
|
||||||
* @param page 分页对象
|
|
||||||
* @param subject 学科
|
|
||||||
* @param section 章节
|
|
||||||
* @param question 问题
|
|
||||||
* @return 题目
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public IPage<AnswerVO> findAll(Page<AnswerVO> page, String subject, String section, String question) {
|
|
||||||
subject = (subject.equals("@") ? "" : subject);
|
|
||||||
section = (section.equals("@") ? "" : section);
|
|
||||||
question = (question.equals("@") ? "" : question);
|
|
||||||
return answerMapper.findAll(page, subject, section, question);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 根据类型和id获取题目
|
|
||||||
*
|
|
||||||
* @param type 类型
|
|
||||||
* @param questionId 题目id
|
|
||||||
* @return 题目信息
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public QuestionVO findByIdAndType(String type, Long questionId) {
|
|
||||||
QuestionVO questionVO = new QuestionVO();
|
|
||||||
questionVO.setType(type);
|
|
||||||
switch (type) {
|
|
||||||
case "选择题":
|
|
||||||
questionVO.setMultiQuestion(answerMapper.findMultiQuestionById(questionId));
|
|
||||||
break;
|
|
||||||
case "判断题":
|
|
||||||
questionVO.setJudgeQuestion(answerMapper.findJudgeQuestionById(questionId));
|
|
||||||
break;
|
|
||||||
case "填空题":
|
|
||||||
questionVO.setFillQuestion(answerMapper.findFillQuestionById(questionId));
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
return questionVO;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,117 +0,0 @@
|
|||||||
package com.shanzhu.oe.serviceimpl;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
||||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
||||||
import com.shanzhu.oe.entity.ExamManage;
|
|
||||||
import com.shanzhu.oe.mapper.ExamManageMapper;
|
|
||||||
import com.shanzhu.oe.service.ExamManageService;
|
|
||||||
import com.shanzhu.oe.service.PaperService;
|
|
||||||
import lombok.RequiredArgsConstructor;
|
|
||||||
import org.springframework.stereotype.Service;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 考试管理 服务层实现类
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
@Service
|
|
||||||
@RequiredArgsConstructor
|
|
||||||
public class ExamManageServiceImpl implements ExamManageService {
|
|
||||||
|
|
||||||
private final ExamManageMapper examManageMapper;
|
|
||||||
|
|
||||||
private final PaperService paperService;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 查询所有考试
|
|
||||||
*
|
|
||||||
* @return 考试列表
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public List<ExamManage> findAll() {
|
|
||||||
Page<ExamManage> examManage = new Page<>(0, 9999);
|
|
||||||
List<ExamManage> examManageList = examManageMapper.findAll(examManage).getRecords();
|
|
||||||
setMaxScore(examManageList);
|
|
||||||
return examManageList;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 查询考试 分页
|
|
||||||
*
|
|
||||||
* @param page 分页对象
|
|
||||||
* @return 考试列表
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public IPage<ExamManage> findAll(Page<ExamManage> page) {
|
|
||||||
IPage<ExamManage> iPage = examManageMapper.findAll(page);
|
|
||||||
setMaxScore(iPage.getRecords());
|
|
||||||
return iPage;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 根据考试编号查询考试信息
|
|
||||||
*
|
|
||||||
* @param examCode 考试编好
|
|
||||||
* @return 考试信息
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public ExamManage findById(Integer examCode) {
|
|
||||||
ExamManage examManage = examManageMapper.findById(examCode);
|
|
||||||
examManage.setTotalScore(paperService.getMaxScore(examManage.getPaperId()));
|
|
||||||
return examManage;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 根据考试编号删除
|
|
||||||
*
|
|
||||||
* @param examCode 考试编号
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public Integer delete(Integer examCode) {
|
|
||||||
return examManageMapper.delete(examCode);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 更新考试信息
|
|
||||||
*
|
|
||||||
* @param examManage 考试信息
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public Integer update(ExamManage examManage) {
|
|
||||||
return examManageMapper.update(examManage);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 添加考试信息
|
|
||||||
*
|
|
||||||
* @param examManage 考试信息
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public Integer add(ExamManage examManage) {
|
|
||||||
return examManageMapper.add(examManage);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 查询最后一条记录的paperId,返回给前端达到自增效果
|
|
||||||
*
|
|
||||||
* @return 最后一条记录
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public ExamManage findOnlyPaperId() {
|
|
||||||
return examManageMapper.findOnlyPaperId();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 设置最高分
|
|
||||||
*
|
|
||||||
* @param examManageList
|
|
||||||
*/
|
|
||||||
private void setMaxScore(List<ExamManage> examManageList) {
|
|
||||||
for (ExamManage examManage : examManageList) {
|
|
||||||
examManage.setTotalScore(paperService.getMaxScore(examManage.getPaperId()));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,77 +0,0 @@
|
|||||||
package com.shanzhu.oe.serviceimpl;
|
|
||||||
|
|
||||||
import com.shanzhu.oe.entity.FillQuestion;
|
|
||||||
import com.shanzhu.oe.mapper.FillQuestionMapper;
|
|
||||||
import com.shanzhu.oe.service.FillQuestionService;
|
|
||||||
import lombok.RequiredArgsConstructor;
|
|
||||||
import org.springframework.stereotype.Service;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 填空题 服务层实现类
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
@Service
|
|
||||||
@RequiredArgsConstructor
|
|
||||||
public class FillQuestionServiceImpl implements FillQuestionService {
|
|
||||||
|
|
||||||
private final FillQuestionMapper fillQuestionMapper;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过试卷id查询问题
|
|
||||||
*
|
|
||||||
* @param paperId 试卷id
|
|
||||||
* @return 问题
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public List<FillQuestion> findByIdAndType(Integer paperId) {
|
|
||||||
return fillQuestionMapper.findByIdAndType(paperId);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 查询最后一条填空题
|
|
||||||
*
|
|
||||||
* @return 最后一条填空题
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public FillQuestion findOnlyQuestionId() {
|
|
||||||
return fillQuestionMapper.findOnlyQuestionId();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 添加填空题
|
|
||||||
*
|
|
||||||
* @param fillQuestion 填空题内容
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public Integer add(FillQuestion fillQuestion) {
|
|
||||||
return fillQuestionMapper.add(fillQuestion);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过学科查询
|
|
||||||
*
|
|
||||||
* @param subject 学科查询
|
|
||||||
* @param pageNo 分页数
|
|
||||||
* @return 题目
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public List<Integer> findBySubject(String subject, Integer pageNo) {
|
|
||||||
return fillQuestionMapper.findBySubject(subject,pageNo);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 编辑填空题
|
|
||||||
*
|
|
||||||
* @param fillQuestion 填空题内容
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public Integer edit(FillQuestion fillQuestion) {
|
|
||||||
return fillQuestionMapper.edit(fillQuestion);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,77 +0,0 @@
|
|||||||
package com.shanzhu.oe.serviceimpl;
|
|
||||||
|
|
||||||
import com.shanzhu.oe.entity.JudgeQuestion;
|
|
||||||
import com.shanzhu.oe.mapper.JudgeQuestionMapper;
|
|
||||||
import com.shanzhu.oe.service.JudgeQuestionService;
|
|
||||||
import lombok.RequiredArgsConstructor;
|
|
||||||
import org.springframework.stereotype.Service;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 判断题 服务层实现类
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
@Service
|
|
||||||
@RequiredArgsConstructor
|
|
||||||
public class JudgeQuestionServiceImpl implements JudgeQuestionService {
|
|
||||||
|
|
||||||
private final JudgeQuestionMapper judgeQuestionMapper;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过试卷id查询问题
|
|
||||||
*
|
|
||||||
* @param paperId 试卷id
|
|
||||||
* @return 问题
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public List<JudgeQuestion> findByIdAndType(Integer paperId) {
|
|
||||||
return judgeQuestionMapper.findByIdAndType(paperId);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 查询最后一个判断题id
|
|
||||||
*
|
|
||||||
* @return 最后一个判断题
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public JudgeQuestion findOnlyQuestionId() {
|
|
||||||
return judgeQuestionMapper.findOnlyQuestionId();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 添加判断题
|
|
||||||
*
|
|
||||||
* @param judgeQuestion 判断题信息
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public Integer add(JudgeQuestion judgeQuestion) {
|
|
||||||
return judgeQuestionMapper.add(judgeQuestion);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* 通过学科查询
|
|
||||||
* @param subject 学科
|
|
||||||
* @param pageNo 分页数
|
|
||||||
* @return 题目id
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public List<Integer> findBySubject(String subject, Integer pageNo) {
|
|
||||||
return judgeQuestionMapper.findBySubject(subject,pageNo);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 编辑判断题
|
|
||||||
*
|
|
||||||
* @param judgeQuestion 判断题
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public Integer edit(JudgeQuestion judgeQuestion) {
|
|
||||||
return judgeQuestionMapper.edit(judgeQuestion);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,58 +0,0 @@
|
|||||||
package com.shanzhu.oe.serviceimpl;
|
|
||||||
|
|
||||||
import com.shanzhu.oe.entity.Admin;
|
|
||||||
import com.shanzhu.oe.entity.Student;
|
|
||||||
import com.shanzhu.oe.entity.Teacher;
|
|
||||||
import com.shanzhu.oe.mapper.LoginMapper;
|
|
||||||
import com.shanzhu.oe.service.LoginService;
|
|
||||||
import lombok.RequiredArgsConstructor;
|
|
||||||
import org.springframework.stereotype.Service;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 用户登录 服务层实现类
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
@Service
|
|
||||||
@RequiredArgsConstructor
|
|
||||||
public class LoginServiceImpl implements LoginService {
|
|
||||||
|
|
||||||
private final LoginMapper loginMapper;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 管理员用户登录
|
|
||||||
*
|
|
||||||
* @param username 用户名
|
|
||||||
* @param password 密码
|
|
||||||
* @return 登录用户信息
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public Admin adminLogin(Integer username, String password) {
|
|
||||||
return loginMapper.adminLogin(username,password);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 教师登录
|
|
||||||
*
|
|
||||||
* @param username 用户名
|
|
||||||
* @param password 密码
|
|
||||||
* @return 登录用户信息
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public Teacher teacherLogin(Integer username, String password) {
|
|
||||||
return loginMapper.teacherLogin(username,password);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 学生登录
|
|
||||||
*
|
|
||||||
* @param username 用户名
|
|
||||||
* @param password 密码
|
|
||||||
* @return 登录用户信息
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public Student studentLogin(Integer username, String password) {
|
|
||||||
return loginMapper.studentLogin(username,password);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,78 +0,0 @@
|
|||||||
package com.shanzhu.oe.serviceimpl;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
||||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
||||||
import com.shanzhu.oe.entity.Message;
|
|
||||||
import com.shanzhu.oe.mapper.MessageMapper;
|
|
||||||
import com.shanzhu.oe.service.MessageService;
|
|
||||||
import lombok.RequiredArgsConstructor;
|
|
||||||
import org.springframework.stereotype.Service;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 留言 控制层实现类
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
@Service
|
|
||||||
@RequiredArgsConstructor
|
|
||||||
public class MessageServiceImpl implements MessageService {
|
|
||||||
|
|
||||||
private final MessageMapper messageMapper;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 留言查询 分页
|
|
||||||
*
|
|
||||||
* @param page 分页内容
|
|
||||||
* @return 留言数据
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public IPage<Message> findPage(Page page) {
|
|
||||||
return messageMapper.findAll(page);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过id查询留言
|
|
||||||
*
|
|
||||||
* @param id 留言id
|
|
||||||
* @return 留言内容
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public Message findById(Integer id) {
|
|
||||||
return messageMapper.findById(id);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 删除留言
|
|
||||||
*
|
|
||||||
* @param id 留言id
|
|
||||||
* @return 删除成功数量
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public Integer delete(Integer id) {
|
|
||||||
return messageMapper.delete(id);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 更新留言
|
|
||||||
*
|
|
||||||
* @param message 留言信息
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public Integer update(Message message) {
|
|
||||||
return messageMapper.update(message);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 添加留言
|
|
||||||
*
|
|
||||||
* @param message 留言信息
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public Integer add(Message message) {
|
|
||||||
return messageMapper.add(message);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,77 +0,0 @@
|
|||||||
package com.shanzhu.oe.serviceimpl;
|
|
||||||
|
|
||||||
import com.shanzhu.oe.entity.MultiQuestion;
|
|
||||||
import com.shanzhu.oe.mapper.MultiQuestionMapper;
|
|
||||||
import com.shanzhu.oe.service.MultiQuestionService;
|
|
||||||
import lombok.RequiredArgsConstructor;
|
|
||||||
import org.springframework.stereotype.Service;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 选择题 服务层
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
@Service
|
|
||||||
@RequiredArgsConstructor
|
|
||||||
public class MultiQuestionServiceImpl implements MultiQuestionService {
|
|
||||||
|
|
||||||
private final MultiQuestionMapper multiQuestionMapper;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过试卷id 查询试卷
|
|
||||||
*
|
|
||||||
* @param paperId 试卷id
|
|
||||||
* @return 问题
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public List<MultiQuestion> findByIdAndType(Integer paperId) {
|
|
||||||
return multiQuestionMapper.findByIdAndType(paperId);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过id查询选择题
|
|
||||||
*
|
|
||||||
* @return 选择题
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public MultiQuestion findOnlyQuestionId() {
|
|
||||||
return multiQuestionMapper.findOnlyQuestionId();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 添加选择题
|
|
||||||
*
|
|
||||||
* @param multiQuestion 选择题信息
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public Integer add(MultiQuestion multiQuestion) {
|
|
||||||
return multiQuestionMapper.add(multiQuestion);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过学科查询
|
|
||||||
*
|
|
||||||
* @param subject 学科
|
|
||||||
* @param pageNo 分页数
|
|
||||||
* @return 题目id
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public List<Integer> findBySubject(String subject, Integer pageNo) {
|
|
||||||
return multiQuestionMapper.findBySubject(subject,pageNo);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 编辑选择题
|
|
||||||
*
|
|
||||||
* @param multiQuestion 选择题信息
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public Integer edit(MultiQuestion multiQuestion) {
|
|
||||||
return multiQuestionMapper.edit(multiQuestion);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,66 +0,0 @@
|
|||||||
package com.shanzhu.oe.serviceimpl;
|
|
||||||
|
|
||||||
import com.shanzhu.oe.entity.Replay;
|
|
||||||
import com.shanzhu.oe.mapper.ReplayMapper;
|
|
||||||
import com.shanzhu.oe.service.ReplayService;
|
|
||||||
import lombok.RequiredArgsConstructor;
|
|
||||||
import org.springframework.stereotype.Service;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 回复 服务层实现类
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
@Service
|
|
||||||
@RequiredArgsConstructor
|
|
||||||
public class ReplayServiceImpl implements ReplayService {
|
|
||||||
|
|
||||||
private final ReplayMapper replayMapper;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过留言id查询回复
|
|
||||||
*
|
|
||||||
* @param messageId 留言id
|
|
||||||
* @return 回复
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public List<Replay> findAllById(Integer messageId) {
|
|
||||||
return replayMapper.findAllById(messageId);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 删除回复
|
|
||||||
*
|
|
||||||
* @param replayId 回复id
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public Integer delete(Integer replayId) {
|
|
||||||
return replayMapper.delete(replayId);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 更新回复
|
|
||||||
*
|
|
||||||
* @param replay 回复内容
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public Integer update(Replay replay) {
|
|
||||||
return replayMapper.update(replay);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 添加回复
|
|
||||||
*
|
|
||||||
* @param replay 回复内容
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public Integer add(Replay replay) {
|
|
||||||
return replayMapper.add(replay);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,80 +0,0 @@
|
|||||||
package com.shanzhu.oe.serviceimpl;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
||||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
||||||
import com.shanzhu.oe.entity.Score;
|
|
||||||
import com.shanzhu.oe.mapper.ScoreMapper;
|
|
||||||
import com.shanzhu.oe.service.ScoreService;
|
|
||||||
import lombok.RequiredArgsConstructor;
|
|
||||||
import org.springframework.stereotype.Service;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 分数 服务层实现类
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
@Service
|
|
||||||
@RequiredArgsConstructor
|
|
||||||
public class ScoreServiceImpl implements ScoreService {
|
|
||||||
|
|
||||||
private final ScoreMapper scoreMapper;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 添加学生成绩
|
|
||||||
*
|
|
||||||
* @param score 学生成绩
|
|
||||||
* @return 考试成绩
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public Integer add(Score score) {
|
|
||||||
return scoreMapper.add(score);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 查询所有考试成绩
|
|
||||||
*
|
|
||||||
* @return 考试成绩
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public List<Score> findAll() {
|
|
||||||
return scoreMapper.findAll();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 查询考试成绩 分页
|
|
||||||
*
|
|
||||||
* @param page 分页对象
|
|
||||||
* @param studentId 学生id
|
|
||||||
* @return 考试成绩
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public IPage<Score> findById(Page page, Integer studentId) {
|
|
||||||
return scoreMapper.findById(page, studentId);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 查询考试成绩 不分页
|
|
||||||
*
|
|
||||||
* @param studentId 学生id
|
|
||||||
* @return 考试成绩
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public List<Score> findById(Integer studentId) {
|
|
||||||
Page<Score> scorePage = new Page<>(0, 9999);
|
|
||||||
return scoreMapper.findById(scorePage, studentId).getRecords();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过考试编号 查询学生成绩
|
|
||||||
*
|
|
||||||
* @param examCode 考试编号
|
|
||||||
* @return 考试成绩
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public List<Score> findByExamCode(Integer examCode) {
|
|
||||||
return scoreMapper.findByExamCode(examCode);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,103 +0,0 @@
|
|||||||
package com.shanzhu.oe.serviceimpl;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
||||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
||||||
import com.shanzhu.oe.entity.Student;
|
|
||||||
import com.shanzhu.oe.mapper.StudentMapper;
|
|
||||||
import com.shanzhu.oe.service.StudentService;
|
|
||||||
import lombok.RequiredArgsConstructor;
|
|
||||||
import org.springframework.stereotype.Service;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 学生 服务层实现类
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
@Service
|
|
||||||
@RequiredArgsConstructor
|
|
||||||
public class StudentServiceImpl implements StudentService {
|
|
||||||
|
|
||||||
private final StudentMapper studentMapper;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 查询学生 分页
|
|
||||||
*
|
|
||||||
* @param page 分页对象
|
|
||||||
* @param name 学生姓名
|
|
||||||
* @param grade 班级
|
|
||||||
* @param tel 电话
|
|
||||||
* @param institute 学院
|
|
||||||
* @param major 专业
|
|
||||||
* @param clazz 班级
|
|
||||||
* @return 学生列表
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public IPage<Student> findAll(
|
|
||||||
Page<Student> page, String name, String grade,
|
|
||||||
String tel, String institute, String major, String clazz
|
|
||||||
) {
|
|
||||||
name = ("@".equals(name) ? "" : name);
|
|
||||||
grade = ("@".equals(grade) ? "" : grade);
|
|
||||||
tel = ("@".equals(tel) ? "" : tel);
|
|
||||||
institute = ("@".equals(institute) ? "" : institute);
|
|
||||||
major = ("@".equals(major) ? "" : major);
|
|
||||||
clazz = ("@".equals(clazz) ? "" : clazz);
|
|
||||||
return studentMapper.findAll(page, name, grade, tel, institute, major, clazz);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过学生id查询学生
|
|
||||||
*
|
|
||||||
* @param studentId 学生id
|
|
||||||
* @return 学生
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public Student findById(Integer studentId) {
|
|
||||||
return studentMapper.findById(studentId);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 删除学生
|
|
||||||
*
|
|
||||||
* @param studentId 学生id
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public Integer deleteById(Integer studentId) {
|
|
||||||
return studentMapper.deleteById(studentId);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 更新学生
|
|
||||||
*
|
|
||||||
* @param student 学生信息
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public Integer update(Student student) {
|
|
||||||
return studentMapper.update(student);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 添加学生
|
|
||||||
*
|
|
||||||
* @param student 学生信息
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public Integer add(Student student) {
|
|
||||||
return studentMapper.add(student);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 更新密码
|
|
||||||
*
|
|
||||||
* @param student 学生信息
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public Integer updatePwd(Student student) {
|
|
||||||
return studentMapper.updatePwd(student);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,86 +0,0 @@
|
|||||||
package com.shanzhu.oe.serviceimpl;
|
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
||||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
||||||
import com.shanzhu.oe.entity.Teacher;
|
|
||||||
import com.shanzhu.oe.mapper.TeacherMapper;
|
|
||||||
import com.shanzhu.oe.service.TeacherService;
|
|
||||||
import lombok.RequiredArgsConstructor;
|
|
||||||
import org.springframework.stereotype.Service;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 教师 服务层实现类
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
@Service
|
|
||||||
@RequiredArgsConstructor
|
|
||||||
public class TeacherServiceImpl implements TeacherService {
|
|
||||||
|
|
||||||
private final TeacherMapper teacherMapper;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 查询教师 分页
|
|
||||||
*
|
|
||||||
* @param page 分页对象
|
|
||||||
* @return 教师列表
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public IPage<Teacher> findAll(Page<Teacher> page) {
|
|
||||||
return teacherMapper.findAll(page);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public List<Teacher> findAll() {
|
|
||||||
Page<Teacher> teacherPage = new Page<>(0,9999);
|
|
||||||
return teacherMapper.findAll(teacherPage).getRecords();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过教师id查询
|
|
||||||
*
|
|
||||||
* @param teacherId 教师id
|
|
||||||
* @return 教师
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public Teacher findById(Integer teacherId) {
|
|
||||||
return teacherMapper.findById(teacherId);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 删除教师
|
|
||||||
*
|
|
||||||
* @param teacherId 教师id
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public Integer deleteById(Integer teacherId) {
|
|
||||||
return teacherMapper.deleteById(teacherId);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 更新教师
|
|
||||||
*
|
|
||||||
* @param teacher 教师信息
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public Integer update(Teacher teacher) {
|
|
||||||
return teacherMapper.update(teacher);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 添加教师
|
|
||||||
*
|
|
||||||
* @param teacher 教师信息
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public Integer add(Teacher teacher) {
|
|
||||||
teacher.setRole("1");
|
|
||||||
return teacherMapper.add(teacher);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,33 +0,0 @@
|
|||||||
package com.shanzhu.oe.util;
|
|
||||||
|
|
||||||
import com.shanzhu.oe.common.R;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 对象 {@link R} 数据处理工具
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
public class ApiResultHandler {
|
|
||||||
|
|
||||||
public static R success(Object object) {
|
|
||||||
R r = new R();
|
|
||||||
r.setData(object);
|
|
||||||
r.setCode(200);
|
|
||||||
r.setMessage("请求成功");
|
|
||||||
return r;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static R success() {
|
|
||||||
return success(null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static <T> R buildApiResult(Integer code, String message, T data) {
|
|
||||||
R r = new R();
|
|
||||||
r.setCode(code);
|
|
||||||
r.setMessage(message);
|
|
||||||
r.setData(data);
|
|
||||||
return r;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@ -1,51 +0,0 @@
|
|||||||
package com.shanzhu.oe.vo;
|
|
||||||
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 题库 接口返回对象
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
public class AnswerVO {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 题目id
|
|
||||||
*/
|
|
||||||
private Long questionId;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 题目
|
|
||||||
*/
|
|
||||||
private String question;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 科目
|
|
||||||
*/
|
|
||||||
private String subject;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 分数
|
|
||||||
*/
|
|
||||||
private String score;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 章节
|
|
||||||
*/
|
|
||||||
private String section;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 难度等级
|
|
||||||
*/
|
|
||||||
private String level;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 类型
|
|
||||||
*/
|
|
||||||
private String type;
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
@ -1,39 +0,0 @@
|
|||||||
package com.shanzhu.oe.vo;
|
|
||||||
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 组卷
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
public class Item {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 科目
|
|
||||||
*/
|
|
||||||
private String subject;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 试卷编号
|
|
||||||
*/
|
|
||||||
private Integer paperId;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 选择题数量
|
|
||||||
*/
|
|
||||||
private Integer changeNumber;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 填空题数量
|
|
||||||
*/
|
|
||||||
private Integer fillNumber;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 判断题数量
|
|
||||||
*/
|
|
||||||
private Integer judgeNumber;
|
|
||||||
|
|
||||||
}
|
|
@ -1,37 +0,0 @@
|
|||||||
package com.shanzhu.oe.vo;
|
|
||||||
|
|
||||||
import com.shanzhu.oe.entity.FillQuestion;
|
|
||||||
import com.shanzhu.oe.entity.JudgeQuestion;
|
|
||||||
import com.shanzhu.oe.entity.MultiQuestion;
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 题目 接口返回对象
|
|
||||||
*
|
|
||||||
* @author: ShanZhu
|
|
||||||
* @date: 2023-11-20
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
public class QuestionVO {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 题目类型
|
|
||||||
*/
|
|
||||||
private String type;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 填空题
|
|
||||||
*/
|
|
||||||
private FillQuestion fillQuestion;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 判断题
|
|
||||||
*/
|
|
||||||
private JudgeQuestion judgeQuestion;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 选择题
|
|
||||||
*/
|
|
||||||
private MultiQuestion multiQuestion;
|
|
||||||
|
|
||||||
}
|
|
@ -1,12 +0,0 @@
|
|||||||
{
|
|
||||||
"presets": [
|
|
||||||
["env", {
|
|
||||||
"modules": false,
|
|
||||||
"targets": {
|
|
||||||
"browsers": ["> 1%", "last 2 versions", "not ie <= 8"]
|
|
||||||
}
|
|
||||||
}],
|
|
||||||
"stage-2"
|
|
||||||
],
|
|
||||||
"plugins": ["transform-vue-jsx", "transform-runtime"]
|
|
||||||
}
|
|
@ -1,9 +0,0 @@
|
|||||||
root = true
|
|
||||||
|
|
||||||
[*]
|
|
||||||
charset = utf-8
|
|
||||||
indent_style = space
|
|
||||||
indent_size = 2
|
|
||||||
end_of_line = lf
|
|
||||||
insert_final_newline = true
|
|
||||||
trim_trailing_whitespace = true
|
|
@ -1,25 +0,0 @@
|
|||||||
.DS_Store
|
|
||||||
node_modules
|
|
||||||
/dist
|
|
||||||
|
|
||||||
|
|
||||||
# local env files
|
|
||||||
.env.local
|
|
||||||
.env.*.local
|
|
||||||
|
|
||||||
# Log files
|
|
||||||
npm-debug.log*
|
|
||||||
yarn-debug.log*
|
|
||||||
yarn-error.log*
|
|
||||||
pnpm-debug.log*
|
|
||||||
|
|
||||||
# Editor directories and files`
|
|
||||||
`
|
|
||||||
|
|
||||||
.idea
|
|
||||||
.vscode
|
|
||||||
*.suo
|
|
||||||
*.ntvs*
|
|
||||||
*.njsproj
|
|
||||||
*.sln
|
|
||||||
*.sw?
|
|
@ -1 +0,0 @@
|
|||||||
registry=https://registry.npm.taobao.org/
|
|
@ -1,10 +0,0 @@
|
|||||||
// https://github.com/michael-ciniawsky/postcss-load-config
|
|
||||||
|
|
||||||
module.exports = {
|
|
||||||
"plugins": {
|
|
||||||
"postcss-import": {},
|
|
||||||
"postcss-url": {},
|
|
||||||
// to edit target browsers: use "browserslist" field in package.json
|
|
||||||
"autoprefixer": {}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,41 +0,0 @@
|
|||||||
'use strict'
|
|
||||||
require('./check-versions')()
|
|
||||||
|
|
||||||
process.env.NODE_ENV = 'production'
|
|
||||||
|
|
||||||
const ora = require('ora')
|
|
||||||
const rm = require('rimraf')
|
|
||||||
const path = require('path')
|
|
||||||
const chalk = require('chalk')
|
|
||||||
const webpack = require('webpack')
|
|
||||||
const config = require('../config')
|
|
||||||
const webpackConfig = require('./webpack.prod.conf')
|
|
||||||
|
|
||||||
const spinner = ora('building for production...')
|
|
||||||
spinner.start()
|
|
||||||
|
|
||||||
rm(path.join(config.build.assetsRoot, config.build.assetsSubDirectory), err => {
|
|
||||||
if (err) throw err
|
|
||||||
webpack(webpackConfig, (err, stats) => {
|
|
||||||
spinner.stop()
|
|
||||||
if (err) throw err
|
|
||||||
process.stdout.write(stats.toString({
|
|
||||||
colors: true,
|
|
||||||
modules: false,
|
|
||||||
children: false, // If you are using ts-loader, setting this to true will make TypeScript errors show up during build.
|
|
||||||
chunks: false,
|
|
||||||
chunkModules: false
|
|
||||||
}) + '\n\n')
|
|
||||||
|
|
||||||
if (stats.hasErrors()) {
|
|
||||||
console.log(chalk.red(' Build failed with errors.\n'))
|
|
||||||
process.exit(1)
|
|
||||||
}
|
|
||||||
|
|
||||||
console.log(chalk.cyan(' Build complete.\n'))
|
|
||||||
console.log(chalk.yellow(
|
|
||||||
' Tip: built files are meant to be served over an HTTP server.\n' +
|
|
||||||
' Opening index.html over file:// won\'t work.\n'
|
|
||||||
))
|
|
||||||
})
|
|
||||||
})
|
|
@ -1,54 +0,0 @@
|
|||||||
'use strict'
|
|
||||||
const chalk = require('chalk')
|
|
||||||
const semver = require('semver')
|
|
||||||
const packageConfig = require('../package.json')
|
|
||||||
const shell = require('shelljs')
|
|
||||||
|
|
||||||
function exec (cmd) {
|
|
||||||
return require('child_process').execSync(cmd).toString().trim()
|
|
||||||
}
|
|
||||||
|
|
||||||
const versionRequirements = [
|
|
||||||
{
|
|
||||||
name: 'node',
|
|
||||||
currentVersion: semver.clean(process.version),
|
|
||||||
versionRequirement: packageConfig.engines.node
|
|
||||||
}
|
|
||||||
]
|
|
||||||
|
|
||||||
if (shell.which('npm')) {
|
|
||||||
versionRequirements.push({
|
|
||||||
name: 'npm',
|
|
||||||
currentVersion: exec('npm --version'),
|
|
||||||
versionRequirement: packageConfig.engines.npm
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = function () {
|
|
||||||
const warnings = []
|
|
||||||
|
|
||||||
for (let i = 0; i < versionRequirements.length; i++) {
|
|
||||||
const mod = versionRequirements[i]
|
|
||||||
|
|
||||||
if (!semver.satisfies(mod.currentVersion, mod.versionRequirement)) {
|
|
||||||
warnings.push(mod.name + ': ' +
|
|
||||||
chalk.red(mod.currentVersion) + ' should be ' +
|
|
||||||
chalk.green(mod.versionRequirement)
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (warnings.length) {
|
|
||||||
console.log('')
|
|
||||||
console.log(chalk.yellow('To use this template, you must update following to modules:'))
|
|
||||||
console.log()
|
|
||||||
|
|
||||||
for (let i = 0; i < warnings.length; i++) {
|
|
||||||
const warning = warnings[i]
|
|
||||||
console.log(' ' + warning)
|
|
||||||
}
|
|
||||||
|
|
||||||
console.log()
|
|
||||||
process.exit(1)
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 34 KiB |
@ -1,99 +0,0 @@
|
|||||||
'use strict'
|
|
||||||
const path = require('path')
|
|
||||||
const config = require('../config')
|
|
||||||
const ExtractTextPlugin = require('extract-text-webpack-plugin')
|
|
||||||
const packageConfig = require('../package.json')
|
|
||||||
|
|
||||||
exports.assetsPath = function (_path) {
|
|
||||||
const assetsSubDirectory = process.env.NODE_ENV === 'production'
|
|
||||||
? config.build.assetsSubDirectory
|
|
||||||
: config.dev.assetsSubDirectory
|
|
||||||
|
|
||||||
return path.posix.join(assetsSubDirectory, _path)
|
|
||||||
}
|
|
||||||
|
|
||||||
exports.cssLoaders = function (options) {
|
|
||||||
options = options || {}
|
|
||||||
|
|
||||||
const cssLoader = {
|
|
||||||
loader: 'css-loader',
|
|
||||||
options: {
|
|
||||||
sourceMap: options.sourceMap
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const postcssLoader = {
|
|
||||||
loader: 'postcss-loader',
|
|
||||||
options: {
|
|
||||||
sourceMap: options.sourceMap
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// generate loader string to be used with extract text plugin
|
|
||||||
function generateLoaders (loader, loaderOptions) {
|
|
||||||
const loaders = options.usePostCSS ? [cssLoader, postcssLoader] : [cssLoader]
|
|
||||||
|
|
||||||
if (loader) {
|
|
||||||
loaders.push({
|
|
||||||
loader: loader + '-loader',
|
|
||||||
options: Object.assign({}, loaderOptions, {
|
|
||||||
sourceMap: options.sourceMap
|
|
||||||
})
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
// Extract CSS when that option is specified
|
|
||||||
// (which is the case during production build)
|
|
||||||
if (options.extract) {
|
|
||||||
return ExtractTextPlugin.extract({
|
|
||||||
use: loaders,
|
|
||||||
fallback: 'vue-style-loader'
|
|
||||||
})
|
|
||||||
} else {
|
|
||||||
return ['vue-style-loader'].concat(loaders)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// https://vue-loader.vuejs.org/en/configurations/extract-css.html
|
|
||||||
return {
|
|
||||||
css: generateLoaders(),
|
|
||||||
postcss: generateLoaders(),
|
|
||||||
less: generateLoaders('less'),
|
|
||||||
stylus: generateLoaders('stylus'),
|
|
||||||
styl: generateLoaders('stylus')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Generate loaders for standalone style files (outside of .vue)
|
|
||||||
exports.styleLoaders = function (options) {
|
|
||||||
const output = []
|
|
||||||
const loaders = exports.cssLoaders(options)
|
|
||||||
|
|
||||||
for (const extension in loaders) {
|
|
||||||
const loader = loaders[extension]
|
|
||||||
output.push({
|
|
||||||
test: new RegExp('\\.' + extension + '$'),
|
|
||||||
use: loader
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
return output
|
|
||||||
}
|
|
||||||
|
|
||||||
exports.createNotifierCallback = () => {
|
|
||||||
const notifier = require('node-notifier')
|
|
||||||
|
|
||||||
return (severity, errors) => {
|
|
||||||
if (severity !== 'error') return
|
|
||||||
|
|
||||||
const error = errors[0]
|
|
||||||
const filename = error.file && error.file.split('!').pop()
|
|
||||||
|
|
||||||
notifier.notify({
|
|
||||||
title: packageConfig.name,
|
|
||||||
message: severity + ': ' + error.name,
|
|
||||||
subtitle: filename || '',
|
|
||||||
icon: path.join(__dirname, 'logo.png')
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,22 +0,0 @@
|
|||||||
'use strict'
|
|
||||||
const utils = require('./utils')
|
|
||||||
const config = require('../config')
|
|
||||||
const isProduction = process.env.NODE_ENV === 'production'
|
|
||||||
const sourceMapEnabled = isProduction
|
|
||||||
? config.build.productionSourceMap
|
|
||||||
: config.dev.cssSourceMap
|
|
||||||
|
|
||||||
module.exports = {
|
|
||||||
loaders: utils.cssLoaders({
|
|
||||||
sourceMap: sourceMapEnabled,
|
|
||||||
extract: isProduction
|
|
||||||
}),
|
|
||||||
cssSourceMap: sourceMapEnabled,
|
|
||||||
cacheBusting: config.dev.cacheBusting,
|
|
||||||
transformToRequire: {
|
|
||||||
video: ['src', 'poster'],
|
|
||||||
source: 'src',
|
|
||||||
img: 'src',
|
|
||||||
image: 'xlink:href'
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,99 +0,0 @@
|
|||||||
'use strict'
|
|
||||||
const path = require('path')
|
|
||||||
const utils = require('./utils')
|
|
||||||
const config = require('../config')
|
|
||||||
const vueLoaderConfig = require('./vue-loader.conf')
|
|
||||||
|
|
||||||
function resolve (dir) {
|
|
||||||
return path.join(__dirname, '..', dir)
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
module.exports = {
|
|
||||||
context: path.resolve(__dirname, '../'),
|
|
||||||
entry: {
|
|
||||||
app: './src/main.js'
|
|
||||||
},
|
|
||||||
output: {
|
|
||||||
path: config.build.assetsRoot,
|
|
||||||
filename: '[name].js',
|
|
||||||
publicPath: process.env.NODE_ENV === 'production'
|
|
||||||
? config.build.assetsPublicPath
|
|
||||||
: config.dev.assetsPublicPath
|
|
||||||
},
|
|
||||||
resolve: {
|
|
||||||
extensions: ['.js', '.vue', '.json'],
|
|
||||||
alias: {
|
|
||||||
'vue$': 'vue/dist/vue.esm.js',
|
|
||||||
'@': resolve('src'),
|
|
||||||
}
|
|
||||||
},
|
|
||||||
module: {
|
|
||||||
rules: [
|
|
||||||
{
|
|
||||||
test: /\.less$/,
|
|
||||||
loader: "style-loader!css-loader!less-loader"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
test: /\.vue$/,
|
|
||||||
loader: 'vue-loader',
|
|
||||||
options: vueLoaderConfig
|
|
||||||
},
|
|
||||||
{
|
|
||||||
test: /\.js$/,
|
|
||||||
loader: 'babel-loader',
|
|
||||||
include: [resolve('src'), resolve('test'), resolve('node_modules/webpack-dev-server/client')]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
|
|
||||||
loader: 'url-loader',
|
|
||||||
options: {
|
|
||||||
limit: 10000,
|
|
||||||
name: utils.assetsPath('img/[name].[hash:7].[ext]')
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
test: /\.(mp4|webm|ogg|mp3|wav|flac|aac)(\?.*)?$/,
|
|
||||||
loader: 'url-loader',
|
|
||||||
options: {
|
|
||||||
limit: 10000,
|
|
||||||
name: utils.assetsPath('media/[name].[hash:7].[ext]')
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
|
|
||||||
loader: 'url-loader',
|
|
||||||
options: {
|
|
||||||
limit: 10000,
|
|
||||||
name: utils.assetsPath('fonts/[name].[hash:7].[ext]')
|
|
||||||
}
|
|
||||||
},
|
|
||||||
// {
|
|
||||||
// test: /node_modules[\\\/]vis[\\\/].*\.js$/,
|
|
||||||
// loader: 'babel-loader',
|
|
||||||
// query: {
|
|
||||||
// cacheDirectory: true,
|
|
||||||
// presets: [ "babel-preset-es2015" ].map(require.resolve),
|
|
||||||
// plugins: [
|
|
||||||
// "transform-es3-property-literals", // #2452
|
|
||||||
// "transform-es3-member-expression-literals", // #2566
|
|
||||||
// "transform-runtime" // #2566
|
|
||||||
// ]
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
node: {
|
|
||||||
// prevent webpack from injecting useless setImmediate polyfill because Vue
|
|
||||||
// source contains it (although only uses it if it's native).
|
|
||||||
setImmediate: false,
|
|
||||||
// prevent webpack from injecting mocks to Node native modules
|
|
||||||
// that does not make sense for the client
|
|
||||||
dgram: 'empty',
|
|
||||||
fs: 'empty',
|
|
||||||
net: 'empty',
|
|
||||||
tls: 'empty',
|
|
||||||
child_process: 'empty'
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,95 +0,0 @@
|
|||||||
'use strict'
|
|
||||||
const utils = require('./utils')
|
|
||||||
const webpack = require('webpack')
|
|
||||||
const config = require('../config')
|
|
||||||
const merge = require('webpack-merge')
|
|
||||||
const path = require('path')
|
|
||||||
const baseWebpackConfig = require('./webpack.base.conf')
|
|
||||||
const CopyWebpackPlugin = require('copy-webpack-plugin')
|
|
||||||
const HtmlWebpackPlugin = require('html-webpack-plugin')
|
|
||||||
const FriendlyErrorsPlugin = require('friendly-errors-webpack-plugin')
|
|
||||||
const portfinder = require('portfinder')
|
|
||||||
|
|
||||||
const HOST = process.env.HOST
|
|
||||||
const PORT = process.env.PORT && Number(process.env.PORT)
|
|
||||||
|
|
||||||
const devWebpackConfig = merge(baseWebpackConfig, {
|
|
||||||
module: {
|
|
||||||
rules: utils.styleLoaders({ sourceMap: config.dev.cssSourceMap, usePostCSS: true })
|
|
||||||
},
|
|
||||||
// cheap-module-eval-source-map is faster for development
|
|
||||||
devtool: config.dev.devtool,
|
|
||||||
|
|
||||||
// these devServer options should be customized in /config/index.js
|
|
||||||
devServer: {
|
|
||||||
clientLogLevel: 'warning',
|
|
||||||
historyApiFallback: {
|
|
||||||
rewrites: [
|
|
||||||
{ from: /.*/, to: path.posix.join(config.dev.assetsPublicPath, 'index.html') },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
hot: true,
|
|
||||||
contentBase: false, // since we use CopyWebpackPlugin.
|
|
||||||
compress: true,
|
|
||||||
host: HOST || config.dev.host,
|
|
||||||
port: PORT || config.dev.port,
|
|
||||||
open: config.dev.autoOpenBrowser,
|
|
||||||
overlay: config.dev.errorOverlay
|
|
||||||
? { warnings: false, errors: true }
|
|
||||||
: false,
|
|
||||||
publicPath: config.dev.assetsPublicPath,
|
|
||||||
proxy: config.dev.proxyTable,
|
|
||||||
quiet: true, // necessary for FriendlyErrorsPlugin
|
|
||||||
watchOptions: {
|
|
||||||
poll: config.dev.poll,
|
|
||||||
}
|
|
||||||
},
|
|
||||||
plugins: [
|
|
||||||
new webpack.DefinePlugin({
|
|
||||||
'process.env': require('../config/dev.env')
|
|
||||||
}),
|
|
||||||
new webpack.HotModuleReplacementPlugin(),
|
|
||||||
new webpack.NamedModulesPlugin(), // HMR shows correct file names in console on update.
|
|
||||||
new webpack.NoEmitOnErrorsPlugin(),
|
|
||||||
// https://github.com/ampedandwired/html-webpack-plugin
|
|
||||||
new HtmlWebpackPlugin({
|
|
||||||
filename: 'index.html',
|
|
||||||
template: 'index.html',
|
|
||||||
inject: true
|
|
||||||
}),
|
|
||||||
// copy custom static assets
|
|
||||||
new CopyWebpackPlugin([
|
|
||||||
{
|
|
||||||
from: path.resolve(__dirname, '../static'),
|
|
||||||
to: config.dev.assetsSubDirectory,
|
|
||||||
ignore: ['.*']
|
|
||||||
}
|
|
||||||
])
|
|
||||||
]
|
|
||||||
})
|
|
||||||
|
|
||||||
module.exports = new Promise((resolve, reject) => {
|
|
||||||
portfinder.basePort = process.env.PORT || config.dev.port
|
|
||||||
portfinder.getPort((err, port) => {
|
|
||||||
if (err) {
|
|
||||||
reject(err)
|
|
||||||
} else {
|
|
||||||
// publish the new Port, necessary for e2e tests
|
|
||||||
process.env.PORT = port
|
|
||||||
// add port to devServer config
|
|
||||||
devWebpackConfig.devServer.port = port
|
|
||||||
|
|
||||||
// Add FriendlyErrorsPlugin
|
|
||||||
devWebpackConfig.plugins.push(new FriendlyErrorsPlugin({
|
|
||||||
compilationSuccessInfo: {
|
|
||||||
messages: [`Your application is running here: http://${devWebpackConfig.devServer.host}:${port}`],
|
|
||||||
},
|
|
||||||
onErrors: config.dev.notifyOnErrors
|
|
||||||
? utils.createNotifierCallback()
|
|
||||||
: undefined
|
|
||||||
}))
|
|
||||||
|
|
||||||
resolve(devWebpackConfig)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
})
|
|
@ -1,145 +0,0 @@
|
|||||||
'use strict'
|
|
||||||
const path = require('path')
|
|
||||||
const utils = require('./utils')
|
|
||||||
const webpack = require('webpack')
|
|
||||||
const config = require('../config')
|
|
||||||
const merge = require('webpack-merge')
|
|
||||||
const baseWebpackConfig = require('./webpack.base.conf')
|
|
||||||
const CopyWebpackPlugin = require('copy-webpack-plugin')
|
|
||||||
const HtmlWebpackPlugin = require('html-webpack-plugin')
|
|
||||||
const ExtractTextPlugin = require('extract-text-webpack-plugin')
|
|
||||||
const OptimizeCSSPlugin = require('optimize-css-assets-webpack-plugin')
|
|
||||||
const UglifyJsPlugin = require('uglifyjs-webpack-plugin')
|
|
||||||
|
|
||||||
const env = require('../config/prod.env')
|
|
||||||
|
|
||||||
const webpackConfig = merge(baseWebpackConfig, {
|
|
||||||
module: {
|
|
||||||
rules: utils.styleLoaders({
|
|
||||||
sourceMap: config.build.productionSourceMap,
|
|
||||||
extract: true,
|
|
||||||
usePostCSS: true
|
|
||||||
})
|
|
||||||
},
|
|
||||||
devtool: config.build.productionSourceMap ? config.build.devtool : false,
|
|
||||||
output: {
|
|
||||||
path: config.build.assetsRoot,
|
|
||||||
filename: utils.assetsPath('js/[name].[chunkhash].js'),
|
|
||||||
chunkFilename: utils.assetsPath('js/[id].[chunkhash].js')
|
|
||||||
},
|
|
||||||
plugins: [
|
|
||||||
// http://vuejs.github.io/vue-loader/en/workflow/production.html
|
|
||||||
new webpack.DefinePlugin({
|
|
||||||
'process.env': env
|
|
||||||
}),
|
|
||||||
new UglifyJsPlugin({
|
|
||||||
uglifyOptions: {
|
|
||||||
compress: {
|
|
||||||
warnings: false
|
|
||||||
}
|
|
||||||
},
|
|
||||||
sourceMap: config.build.productionSourceMap,
|
|
||||||
parallel: true
|
|
||||||
}),
|
|
||||||
// extract css into its own file
|
|
||||||
new ExtractTextPlugin({
|
|
||||||
filename: utils.assetsPath('css/[name].[contenthash].css'),
|
|
||||||
// Setting the following option to `false` will not extract CSS from codesplit chunks.
|
|
||||||
// Their CSS will instead be inserted dynamically with style-loader when the codesplit chunk has been loaded by webpack.
|
|
||||||
// It's currently set to `true` because we are seeing that sourcemaps are included in the codesplit bundle as well when it's `false`,
|
|
||||||
// increasing file size: https://github.com/vuejs-templates/webpack/issues/1110
|
|
||||||
allChunks: true,
|
|
||||||
}),
|
|
||||||
// Compress extracted CSS. We are using this plugin so that possible
|
|
||||||
// duplicated CSS from different components can be deduped.
|
|
||||||
new OptimizeCSSPlugin({
|
|
||||||
cssProcessorOptions: config.build.productionSourceMap
|
|
||||||
? { safe: true, map: { inline: false } }
|
|
||||||
: { safe: true }
|
|
||||||
}),
|
|
||||||
// generate dist index.html with correct asset hash for caching.
|
|
||||||
// you can customize output by editing /index.html
|
|
||||||
// see https://github.com/ampedandwired/html-webpack-plugin
|
|
||||||
new HtmlWebpackPlugin({
|
|
||||||
filename: config.build.index,
|
|
||||||
template: 'index.html',
|
|
||||||
inject: true,
|
|
||||||
minify: {
|
|
||||||
removeComments: true,
|
|
||||||
collapseWhitespace: true,
|
|
||||||
removeAttributeQuotes: true
|
|
||||||
// more options:
|
|
||||||
// https://github.com/kangax/html-minifier#options-quick-reference
|
|
||||||
},
|
|
||||||
// necessary to consistently work with multiple chunks via CommonsChunkPlugin
|
|
||||||
chunksSortMode: 'dependency'
|
|
||||||
}),
|
|
||||||
// keep module.id stable when vendor modules does not change
|
|
||||||
new webpack.HashedModuleIdsPlugin(),
|
|
||||||
// enable scope hoisting
|
|
||||||
new webpack.optimize.ModuleConcatenationPlugin(),
|
|
||||||
// split vendor js into its own file
|
|
||||||
new webpack.optimize.CommonsChunkPlugin({
|
|
||||||
name: 'vendor',
|
|
||||||
minChunks (module) {
|
|
||||||
// any required modules inside node_modules are extracted to vendor
|
|
||||||
return (
|
|
||||||
module.resource &&
|
|
||||||
/\.js$/.test(module.resource) &&
|
|
||||||
module.resource.indexOf(
|
|
||||||
path.join(__dirname, '../node_modules')
|
|
||||||
) === 0
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}),
|
|
||||||
// extract webpack runtime and module manifest to its own file in order to
|
|
||||||
// prevent vendor hash from being updated whenever app bundle is updated
|
|
||||||
new webpack.optimize.CommonsChunkPlugin({
|
|
||||||
name: 'manifest',
|
|
||||||
minChunks: Infinity
|
|
||||||
}),
|
|
||||||
// This instance extracts shared chunks from code splitted chunks and bundles them
|
|
||||||
// in a separate chunk, similar to the vendor chunk
|
|
||||||
// see: https://webpack.js.org/plugins/commons-chunk-plugin/#extra-async-commons-chunk
|
|
||||||
new webpack.optimize.CommonsChunkPlugin({
|
|
||||||
name: 'app',
|
|
||||||
async: 'vendor-async',
|
|
||||||
children: true,
|
|
||||||
minChunks: 3
|
|
||||||
}),
|
|
||||||
|
|
||||||
// copy custom static assets
|
|
||||||
new CopyWebpackPlugin([
|
|
||||||
{
|
|
||||||
from: path.resolve(__dirname, '../static'),
|
|
||||||
to: config.build.assetsSubDirectory,
|
|
||||||
ignore: ['.*']
|
|
||||||
}
|
|
||||||
])
|
|
||||||
]
|
|
||||||
})
|
|
||||||
|
|
||||||
if (config.build.productionGzip) {
|
|
||||||
const CompressionWebpackPlugin = require('compression-webpack-plugin')
|
|
||||||
|
|
||||||
webpackConfig.plugins.push(
|
|
||||||
new CompressionWebpackPlugin({
|
|
||||||
asset: '[path].gz[query]',
|
|
||||||
algorithm: 'gzip',
|
|
||||||
test: new RegExp(
|
|
||||||
'\\.(' +
|
|
||||||
config.build.productionGzipExtensions.join('|') +
|
|
||||||
')$'
|
|
||||||
),
|
|
||||||
threshold: 10240,
|
|
||||||
minRatio: 0.8
|
|
||||||
})
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
if (config.build.bundleAnalyzerReport) {
|
|
||||||
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
|
|
||||||
webpackConfig.plugins.push(new BundleAnalyzerPlugin())
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = webpackConfig
|
|
@ -1,7 +0,0 @@
|
|||||||
'use strict'
|
|
||||||
const merge = require('webpack-merge')
|
|
||||||
const prodEnv = require('./prod.env')
|
|
||||||
|
|
||||||
module.exports = merge(prodEnv, {
|
|
||||||
NODE_ENV: '"development"'
|
|
||||||
})
|
|
@ -1,4 +0,0 @@
|
|||||||
'use strict'
|
|
||||||
module.exports = {
|
|
||||||
NODE_ENV: '"production"'
|
|
||||||
}
|
|
@ -1,15 +0,0 @@
|
|||||||
|
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
|
||||||
<title>在线考试系统</title>
|
|
||||||
<link rel="stylesheet" href="//at.alicdn.com/t/font_987928_pqv3jkd52jl.css">
|
|
||||||
<link rel="icon" type="image/x-icon" href="./static/img/icon.png"/>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div id="app"></div>
|
|
||||||
<!-- built files will be auto injected -->
|
|
||||||
</body>
|
|
||||||
</html>
|
|
@ -1,75 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "vue-init",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"description": "vue demo",
|
|
||||||
"author": "",
|
|
||||||
"private": true,
|
|
||||||
"scripts": {
|
|
||||||
"dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
|
|
||||||
"start": "npm run dev",
|
|
||||||
"build": "node build/build.js"
|
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"@babel/preset-es2015": "^7.0.0-beta.53",
|
|
||||||
"axios": "^0.18.0",
|
|
||||||
"echarts": "^4.2.0-rc.2",
|
|
||||||
"element-ui": "^2.4.11",
|
|
||||||
"global": "^4.4.0",
|
|
||||||
"vis": "^4.21.0",
|
|
||||||
"vue": "^2.5.2",
|
|
||||||
"vue-cookies": "^1.5.12",
|
|
||||||
"vue-router": "^3.0.1",
|
|
||||||
"vuex": "^3.0.1",
|
|
||||||
"vuex-persistedstate": "^2.5.4"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
"less": "^4.1.3",
|
|
||||||
"less-loader": "5.0.0",
|
|
||||||
"@babel/core": "^7.2.2",
|
|
||||||
"@babel/preset-env": "^7.2.3",
|
|
||||||
"autoprefixer": "^7.1.2",
|
|
||||||
"babel-core": "^6.22.1",
|
|
||||||
"babel-helper-vue-jsx-merge-props": "^2.0.3",
|
|
||||||
"babel-loader": "^7.1.5",
|
|
||||||
"babel-plugin-syntax-jsx": "^6.18.0",
|
|
||||||
"babel-plugin-transform-runtime": "^6.22.0",
|
|
||||||
"babel-plugin-transform-vue-jsx": "^3.5.0",
|
|
||||||
"babel-preset-env": "^1.3.2",
|
|
||||||
"babel-preset-stage-2": "^6.22.0",
|
|
||||||
"chalk": "^2.0.1",
|
|
||||||
"copy-webpack-plugin": "^4.0.1",
|
|
||||||
"css-loader": "^0.28.0",
|
|
||||||
"extract-text-webpack-plugin": "^3.0.0",
|
|
||||||
"file-loader": "^1.1.4",
|
|
||||||
"friendly-errors-webpack-plugin": "^1.6.1",
|
|
||||||
"html-webpack-plugin": "^2.30.1",
|
|
||||||
"node-notifier": "^5.1.2",
|
|
||||||
"optimize-css-assets-webpack-plugin": "^3.2.0",
|
|
||||||
"ora": "^1.2.0",
|
|
||||||
"portfinder": "^1.0.13",
|
|
||||||
"postcss-import": "^11.0.0",
|
|
||||||
"postcss-loader": "^2.0.8",
|
|
||||||
"postcss-url": "^7.2.1",
|
|
||||||
"rimraf": "^2.6.0",
|
|
||||||
"semver": "^5.3.0",
|
|
||||||
"shelljs": "^0.7.6",
|
|
||||||
"uglifyjs-webpack-plugin": "^1.1.1",
|
|
||||||
"url-loader": "^0.5.8",
|
|
||||||
"vue-loader": "^13.3.0",
|
|
||||||
"vue-style-loader": "^3.0.1",
|
|
||||||
"vue-template-compiler": "^2.5.2",
|
|
||||||
"webpack": "^3.12.0",
|
|
||||||
"webpack-bundle-analyzer": "^2.9.0",
|
|
||||||
"webpack-dev-server": "^2.9.1",
|
|
||||||
"webpack-merge": "^4.1.0"
|
|
||||||
},
|
|
||||||
"engines": {
|
|
||||||
"node": ">= 6.0.0",
|
|
||||||
"npm": ">= 3.0.0"
|
|
||||||
},
|
|
||||||
"browserslist": [
|
|
||||||
"> 1%",
|
|
||||||
"last 2 versions",
|
|
||||||
"not ie <= 8"
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,41 +0,0 @@
|
|||||||
<!--
|
|
||||||
* 程序主入口
|
|
||||||
*
|
|
||||||
* @Author: ShanZhu
|
|
||||||
* @Date: 2023-11-23
|
|
||||||
-->
|
|
||||||
<template>
|
|
||||||
<div id="app">
|
|
||||||
<router-view/>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
name: 'App',
|
|
||||||
created() {
|
|
||||||
var token = this.$cookies.get("rb_token");
|
|
||||||
var role = this.$cookies.get("rb_role");
|
|
||||||
if(token == null || token == "" || role == null || role == null) {
|
|
||||||
this.$router.push({path: '/' }) //跳转到首页
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style>
|
|
||||||
ul {
|
|
||||||
list-style: none;
|
|
||||||
}
|
|
||||||
a {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
* {
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
#app {
|
|
||||||
font-family: "Microsoft YaHei", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
|
|
||||||
background-color: #eee;
|
|
||||||
}
|
|
||||||
</style>
|
|
Before Width: | Height: | Size: 488 KiB |
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 987 KiB |
Before Width: | Height: | Size: 192 KiB |
Before Width: | Height: | Size: 192 KiB |
Before Width: | Height: | Size: 34 KiB |
@ -1,89 +0,0 @@
|
|||||||
<!--
|
|
||||||
* 添加教师
|
|
||||||
*
|
|
||||||
* @Author: ShanZhu
|
|
||||||
* @Date: 2023-11-23
|
|
||||||
-->
|
|
||||||
<template>
|
|
||||||
<section class="add">
|
|
||||||
<el-form ref="form" :model="form" label-width="80px">
|
|
||||||
<el-form-item label="姓名">
|
|
||||||
<el-input v-model="form.teacherName"></el-input>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="学院">
|
|
||||||
<el-input v-model="form.institute"></el-input>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="性别">
|
|
||||||
<el-input v-model="form.sex"></el-input>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="电话号码">
|
|
||||||
<el-input v-model="form.tel"></el-input>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="密码">
|
|
||||||
<el-input v-model="form.pwd"></el-input>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="身份证号">
|
|
||||||
<el-input v-model="form.cardId"></el-input>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="职称">
|
|
||||||
<el-input v-model="form.type"></el-input>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item>
|
|
||||||
<el-button type="primary" @click="onSubmit()">立即创建</el-button>
|
|
||||||
<el-button type="text" @click="cancel()">取消</el-button>
|
|
||||||
</el-form-item>
|
|
||||||
</el-form>
|
|
||||||
</section>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
form: { //表单数据初始化
|
|
||||||
studentName: null,
|
|
||||||
grade: null,
|
|
||||||
major: null,
|
|
||||||
clazz: null,
|
|
||||||
institute: null,
|
|
||||||
tel: null,
|
|
||||||
email: null,
|
|
||||||
pwd: null,
|
|
||||||
cardId: null,
|
|
||||||
sex: null,
|
|
||||||
role: 2
|
|
||||||
}
|
|
||||||
};
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
onSubmit() { //数据提交
|
|
||||||
this.$axios({
|
|
||||||
url: '/api/teacher',
|
|
||||||
method: 'post',
|
|
||||||
data: {
|
|
||||||
...this.form
|
|
||||||
}
|
|
||||||
}).then(res => {
|
|
||||||
if(res.data.code == 200) {
|
|
||||||
this.$message({
|
|
||||||
message: '数据添加成功',
|
|
||||||
type: 'success'
|
|
||||||
})
|
|
||||||
this.$router.push({path: '/teacherManage'})
|
|
||||||
}
|
|
||||||
})
|
|
||||||
},
|
|
||||||
cancel() { //取消按钮
|
|
||||||
this.form = {}
|
|
||||||
},
|
|
||||||
|
|
||||||
}
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
<style lang="less" scoped>
|
|
||||||
.add {
|
|
||||||
padding: 0px 40px;
|
|
||||||
width: 400px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
@ -1,58 +0,0 @@
|
|||||||
<!--
|
|
||||||
* 组件基础页
|
|
||||||
*
|
|
||||||
* @Author: ShanZhu
|
|
||||||
* @Date: 2023-11-23
|
|
||||||
-->
|
|
||||||
<template>
|
|
||||||
<div id="index">
|
|
||||||
<header1 class="topbar"></header1>
|
|
||||||
<section class="container">
|
|
||||||
<div class="left_side">
|
|
||||||
<mainLeft></mainLeft>
|
|
||||||
</div>
|
|
||||||
<div class="main_wrapper">
|
|
||||||
<navigator class="nav"></navigator>
|
|
||||||
<router-view></router-view>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import header from '@/components/common/header'
|
|
||||||
import mainLeft from '@/components/common/mainLeft'
|
|
||||||
import navigator from '@/components/common/navigator'
|
|
||||||
export default {
|
|
||||||
components:{
|
|
||||||
header1: header,
|
|
||||||
mainLeft: mainLeft,
|
|
||||||
navigator:navigator
|
|
||||||
},
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
username: '许如梦'
|
|
||||||
}
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="less" scoped>
|
|
||||||
#index .nav {
|
|
||||||
box-shadow: 1px 0 5px rgba(0, 0, 0, 0.1);
|
|
||||||
margin-bottom: 30px;
|
|
||||||
}
|
|
||||||
.container {
|
|
||||||
display: flex;
|
|
||||||
background-color: #fff;
|
|
||||||
}
|
|
||||||
.main_wrapper {
|
|
||||||
overflow: hidden;
|
|
||||||
flex: 1;
|
|
||||||
background-color: #fff;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
@ -1,99 +0,0 @@
|
|||||||
<!--
|
|
||||||
* 成绩统计页面
|
|
||||||
*
|
|
||||||
* @Author: ShanZhu
|
|
||||||
* @Date: 2023-11-23
|
|
||||||
-->
|
|
||||||
<template>
|
|
||||||
<div id="grade">
|
|
||||||
<div ref="box" class="box"></div>
|
|
||||||
<div class="notFound" v-if="isNull">
|
|
||||||
<i class="iconfont icon-LC_icon_tips_fill"></i
|
|
||||||
><span>该考生未参加考试</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
name: "grade",
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
isNull: false, //原始数据
|
|
||||||
tableDataX: [], //x轴数据 保存次数
|
|
||||||
tableDataY: [], //y轴数据 保存分数
|
|
||||||
};
|
|
||||||
},
|
|
||||||
mounted() {
|
|
||||||
this.score();
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
score() {
|
|
||||||
let studentId = this.$route.query.studentId;
|
|
||||||
this.$axios(`/api/score/${studentId}`).then((res) => {
|
|
||||||
//根据学生Id查询成绩
|
|
||||||
if (res.data.code == 200) {
|
|
||||||
let rootData = res.data.data;
|
|
||||||
rootData.forEach((element, index) => {
|
|
||||||
|
|
||||||
// 科目名称转列显示
|
|
||||||
var insertIntervalString = (
|
|
||||||
originStr,
|
|
||||||
disNum = 10,
|
|
||||||
insertStr = "\n"
|
|
||||||
) =>
|
|
||||||
originStr.replace(
|
|
||||||
new RegExp("(.{" + disNum + "})", "g"),
|
|
||||||
"$1" + insertStr
|
|
||||||
);
|
|
||||||
// 每隔一个字符插入一个回车
|
|
||||||
var subject = insertIntervalString(element.subject, 3, "\n");
|
|
||||||
|
|
||||||
this.tableDataX.push(subject);
|
|
||||||
this.tableDataY.push(element.etScore);
|
|
||||||
});
|
|
||||||
let boxDom = this.$refs["box"];
|
|
||||||
let scoreCharts = this.$echarts.init(boxDom);
|
|
||||||
let option = {
|
|
||||||
xAxis: {
|
|
||||||
type: "category",
|
|
||||||
data: this.tableDataX,
|
|
||||||
},
|
|
||||||
yAxis: {
|
|
||||||
type: "value",
|
|
||||||
},
|
|
||||||
series: [
|
|
||||||
{
|
|
||||||
data: this.tableDataY,
|
|
||||||
type: "line",
|
|
||||||
itemStyle: { normal: { label: { show: true } } },
|
|
||||||
},
|
|
||||||
],
|
|
||||||
};
|
|
||||||
scoreCharts.setOption(option);
|
|
||||||
scoreCharts.on("mouseover", (params) => {
|
|
||||||
console.log(params.value);
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
this.isNull = true;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="less" scoped>
|
|
||||||
#grade {
|
|
||||||
position: relative;
|
|
||||||
.box {
|
|
||||||
width: 600px;
|
|
||||||
height: 400px;
|
|
||||||
}
|
|
||||||
.notFound {
|
|
||||||
position: absolute;
|
|
||||||
top: 0px;
|
|
||||||
left: 0px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,234 +0,0 @@
|
|||||||
<!--
|
|
||||||
* 顶部信息栏
|
|
||||||
*
|
|
||||||
* @Author: ShanZhu
|
|
||||||
* @Date: 2023-11-23
|
|
||||||
-->
|
|
||||||
<template>
|
|
||||||
<header id="topbar">
|
|
||||||
|
|
||||||
<el-dialog
|
|
||||||
:append-to-body="true"
|
|
||||||
style="z-index:2028px;"
|
|
||||||
title="修改密码"
|
|
||||||
:visible.sync="dialogVisible"
|
|
||||||
width="30%"
|
|
||||||
>
|
|
||||||
<el-form status-icon ref="ruleForm2" label-width="100px" class="demo-ruleForm">
|
|
||||||
<el-form-item label="旧密码" prop="pass">
|
|
||||||
<el-input type="password" v-model="oldPsw" autocomplete="off"></el-input>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="新密码" prop="pass">
|
|
||||||
<el-input type="password" v-model="newPsw" autocomplete="off"></el-input>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="确认新密码" prop="checkPass">
|
|
||||||
<el-input type="password" v-model="confirmNewPsw" autocomplete="off"></el-input>
|
|
||||||
</el-form-item>
|
|
||||||
</el-form>
|
|
||||||
<span slot="footer" class="dialog-footer">
|
|
||||||
<el-button @click="dialogVisible = false">取 消</el-button>
|
|
||||||
<el-button type="primary" @click="resetPsw"
|
|
||||||
>确 定</el-button
|
|
||||||
>
|
|
||||||
</span>
|
|
||||||
</el-dialog>
|
|
||||||
|
|
||||||
<el-row>
|
|
||||||
<el-col :span="3" class="topbar-left">
|
|
||||||
<span class="title" @click="index()" style="font-size: 1.2vw;">在线考试系统管理台</span>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="21" class="topbar-right">
|
|
||||||
<i class="el-icon-menu" @click="toggle()"></i>
|
|
||||||
<div class="user">
|
|
||||||
<span>{{ user.userName }}</span>
|
|
||||||
<img
|
|
||||||
src="@/assets/img/userimg.png"
|
|
||||||
class="user-img"
|
|
||||||
ref="img"
|
|
||||||
@click="showSetting()"
|
|
||||||
/>
|
|
||||||
<transition name="fade">
|
|
||||||
<div class="out" ref="out" v-show="login_flag">
|
|
||||||
<ul>
|
|
||||||
<li v-if="role==0"><a @click="dialogVisible = true" href="javascript:;">修改密码</a></li>
|
|
||||||
<li class="exit" @click="exit()">
|
|
||||||
<a href="javascript:;">退出登录</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</transition>
|
|
||||||
</div>
|
|
||||||
</el-col>
|
|
||||||
</el-row>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import { mapState, mapMutations } from "vuex";
|
|
||||||
export default {
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
login_flag: false,
|
|
||||||
user: {
|
|
||||||
//用户信息
|
|
||||||
userName: null,
|
|
||||||
userId: null,
|
|
||||||
},
|
|
||||||
dialogVisible: false,
|
|
||||||
oldPsw: "",
|
|
||||||
newPsw: "",
|
|
||||||
confirmNewPsw: "",
|
|
||||||
role:0,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
created() {
|
|
||||||
this.getUserInfo();
|
|
||||||
|
|
||||||
this.role = this.$cookies.get("role")
|
|
||||||
},
|
|
||||||
computed: mapState(["flag", "menu"]),
|
|
||||||
methods: {
|
|
||||||
// 管理员重置密码
|
|
||||||
resetPsw() {
|
|
||||||
if(this.oldPsw == "") {
|
|
||||||
this.$message('请输入旧密码');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if(this.newPsw == "") {
|
|
||||||
this.$message('请输入新密码');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if(this.confirmNewPsw != this.newPsw) {
|
|
||||||
this.$message('两次新密码不一致');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
this.$axios(`/api/admin/resetPsw/${this.user.userId}/${this.oldPsw}/${this.newPsw}`).then(res => {
|
|
||||||
let status = res.data.code
|
|
||||||
if(status == 200) {
|
|
||||||
if(res.data.data != true) {
|
|
||||||
this.$message(res.data.data);
|
|
||||||
} else {
|
|
||||||
// 修改成功
|
|
||||||
this.$message("修改成功");
|
|
||||||
this.dialogVisible = false;
|
|
||||||
this.oldPsw = "";
|
|
||||||
this.newPsw = "";
|
|
||||||
this.confirmNewPsw = "";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
},
|
|
||||||
//显示、隐藏退出按钮
|
|
||||||
showSetting() {
|
|
||||||
this.login_flag = !this.login_flag;
|
|
||||||
},
|
|
||||||
//左侧栏放大缩小
|
|
||||||
...mapMutations(["toggle"]),
|
|
||||||
getUserInfo() {
|
|
||||||
//获取用户信息
|
|
||||||
let userName = this.$cookies.get("cname");
|
|
||||||
let userId = this.$cookies.get("cid");
|
|
||||||
this.user.userName = userName;
|
|
||||||
this.user.userId = userId;
|
|
||||||
},
|
|
||||||
index() {
|
|
||||||
this.$router.push({ path: "/index" });
|
|
||||||
},
|
|
||||||
exit() {
|
|
||||||
let role = this.$cookies.get("role");
|
|
||||||
this.$router.push({ path: "/" }); //跳转到登录页面
|
|
||||||
this.$cookies.remove("cname"); //清除cookie
|
|
||||||
this.$cookies.remove("cid");
|
|
||||||
this.$cookies.remove("role");
|
|
||||||
this.$cookies.remove("rb_token") //清除cookie
|
|
||||||
this.$cookies.remove("rb_role")
|
|
||||||
if (role == 0) {
|
|
||||||
this.menu.pop();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
.fade-enter-active,
|
|
||||||
.fade-leave-active {
|
|
||||||
transition: opacity 0.5s;
|
|
||||||
}
|
|
||||||
.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
#topbar {
|
|
||||||
position: relative;
|
|
||||||
z-index: 10;
|
|
||||||
background-color: #3186cb;
|
|
||||||
height: 80px;
|
|
||||||
line-height: 80px;
|
|
||||||
color: #fff;
|
|
||||||
box-shadow: 5px 0px 10px rgba(0, 0, 0, 0.5);
|
|
||||||
}
|
|
||||||
#topbar .topbar-left {
|
|
||||||
height: 80px;
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
background: rgba(0, 0, 0, 0.05);
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
.topbar-left .icon-kaoshi {
|
|
||||||
font-size: 60px;
|
|
||||||
}
|
|
||||||
.topbar-left .title {
|
|
||||||
font-size: 20px;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
.topbar-right {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
.topbar-right .user-img {
|
|
||||||
width: 50px;
|
|
||||||
height: 50px;
|
|
||||||
border-radius: 50%;
|
|
||||||
}
|
|
||||||
.topbar-right .el-icon-menu {
|
|
||||||
font-size: 30px;
|
|
||||||
margin-left: 20px;
|
|
||||||
}
|
|
||||||
.topbar-right .user {
|
|
||||||
position: relative;
|
|
||||||
margin-right: 40px;
|
|
||||||
display: flex;
|
|
||||||
}
|
|
||||||
.topbar-right .user .user-img {
|
|
||||||
margin-top: 15px;
|
|
||||||
margin-left: 10px;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
.user .out {
|
|
||||||
font-size: 14px;
|
|
||||||
position: absolute;
|
|
||||||
top: 80px;
|
|
||||||
right: 0px;
|
|
||||||
background-color: #fff;
|
|
||||||
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
|
|
||||||
padding: 12px;
|
|
||||||
}
|
|
||||||
.user .out ul {
|
|
||||||
list-style: none;
|
|
||||||
}
|
|
||||||
.user .out ul > li {
|
|
||||||
height: 26px;
|
|
||||||
line-height: 26px;
|
|
||||||
}
|
|
||||||
.out a {
|
|
||||||
text-decoration: none;
|
|
||||||
color: #000;
|
|
||||||
}
|
|
||||||
.out .exit {
|
|
||||||
margin-top: 4px;
|
|
||||||
padding-top: 4px;
|
|
||||||
border-top: 1px solid #ccc;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,226 +0,0 @@
|
|||||||
<!--
|
|
||||||
* 登录页面
|
|
||||||
*
|
|
||||||
* @Author: ShanZhu
|
|
||||||
* @Date: 2023-11-23
|
|
||||||
-->
|
|
||||||
<template>
|
|
||||||
<div id="login">
|
|
||||||
<div class="bg"></div>
|
|
||||||
<el-row class="main-container" >
|
|
||||||
<el-col :lg="20" :xs="16" :md="10" :span="10">
|
|
||||||
<div class="bottom" style="margin-top:220px;margin-left: 65%">
|
|
||||||
<div class="container" >
|
|
||||||
|
|
||||||
<p class="title" style="color: #e75c09">
|
|
||||||
<img src="../../assets/img/loginicon.png" style="width: 40px;position: relative; top: 13px;right: 6px">登录在线考试系统
|
|
||||||
</p>
|
|
||||||
<el-form :label-position="labelPosition" label-width="80px" :model="formLabelAlign">
|
|
||||||
<el-form-item label="用户名" >
|
|
||||||
<el-input style="width: 240px" v-model.number="formLabelAlign.username" placeholder="请输入用户名"></el-input>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="密码" >
|
|
||||||
<el-input style="width: 240px" v-model="formLabelAlign.password" placeholder="请输入密码" type='password'></el-input>
|
|
||||||
</el-form-item>
|
|
||||||
<div class="submit">
|
|
||||||
<el-button style="width: 200px" type="primary" class="row-login" @click="login()">登录</el-button>
|
|
||||||
</div>
|
|
||||||
</el-form>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</el-col>
|
|
||||||
</el-row>
|
|
||||||
<el-row class="footer">
|
|
||||||
<el-col>
|
|
||||||
</el-col>
|
|
||||||
</el-row>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import {mapState} from 'vuex'
|
|
||||||
export default {
|
|
||||||
name: "login",
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
role: 2,
|
|
||||||
labelPosition: 'left',
|
|
||||||
formLabelAlign: {
|
|
||||||
username: '',
|
|
||||||
password: ''
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
//用户登录请求后台处理
|
|
||||||
login() {
|
|
||||||
if(this.formLabelAlign.username == undefined || this.formLabelAlign.username == '') {
|
|
||||||
this.$message('请输入用户名');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if(!(/^\d+$/.test(this.formLabelAlign.username)) || this.formLabelAlign.username.toString().length > 10) {
|
|
||||||
this.$message('用户名有误');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if(this.formLabelAlign.password == "") {
|
|
||||||
this.$message('请输入密码');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
this.$axios({
|
|
||||||
url: `/api/login`,
|
|
||||||
method: 'post',
|
|
||||||
data: {
|
|
||||||
...this.formLabelAlign
|
|
||||||
}
|
|
||||||
}).then(res=>{
|
|
||||||
let resData = res.data.data
|
|
||||||
if(resData != null) {
|
|
||||||
switch(resData.role) {
|
|
||||||
case "0": //管理员
|
|
||||||
this.$cookies.set("cname", resData.adminName)
|
|
||||||
this.$cookies.set("cid", resData.adminId)
|
|
||||||
this.$cookies.set("role", 0)
|
|
||||||
this.$router.push({path: '/index' }) //跳转到首页
|
|
||||||
break
|
|
||||||
case "1": //教师
|
|
||||||
this.$cookies.set("cname", resData.teacherName)
|
|
||||||
this.$cookies.set("cid", resData.teacherId)
|
|
||||||
this.$cookies.set("role", 1)
|
|
||||||
this.$router.push({path: '/index' }) //跳转到教师用户
|
|
||||||
break
|
|
||||||
case "2": //学生
|
|
||||||
this.$cookies.set("cname", resData.studentName)
|
|
||||||
this.$cookies.set("cid", resData.studentId)
|
|
||||||
this.$router.push({path: '/student'})
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(resData == null) { //错误提示
|
|
||||||
this.$message({
|
|
||||||
showClose: true,
|
|
||||||
type: 'error',
|
|
||||||
message: '用户名或者密码错误'
|
|
||||||
})
|
|
||||||
}
|
|
||||||
})
|
|
||||||
},
|
|
||||||
clickTag(key) {
|
|
||||||
this.role = key
|
|
||||||
}
|
|
||||||
},
|
|
||||||
computed: mapState(["userInfo"]),
|
|
||||||
mounted() {
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="less" scoped>
|
|
||||||
.remind {
|
|
||||||
border-radius: 4px;
|
|
||||||
padding: 10px 20px;
|
|
||||||
display: flex;
|
|
||||||
position: fixed;
|
|
||||||
right: 20px;
|
|
||||||
bottom: 50%;
|
|
||||||
flex-direction: column;
|
|
||||||
color: #606266;
|
|
||||||
background-color: #fff;
|
|
||||||
border-left: 4px solid #409eff;
|
|
||||||
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19)
|
|
||||||
}
|
|
||||||
.container {
|
|
||||||
margin-bottom: 32px;
|
|
||||||
}
|
|
||||||
.container .el-radio-group {
|
|
||||||
margin: 30px 0px;
|
|
||||||
}
|
|
||||||
a:link {
|
|
||||||
color:#ff962a;
|
|
||||||
text-decoration:none;
|
|
||||||
}
|
|
||||||
#login {
|
|
||||||
font-size: 14px;
|
|
||||||
color: #000;
|
|
||||||
background-color: #fff;
|
|
||||||
}
|
|
||||||
#login .bg {
|
|
||||||
position: fixed;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
width: 100%;
|
|
||||||
overflow-y: auto;
|
|
||||||
height: 100%;
|
|
||||||
background: url('../../assets/img/loginbg.png')center top / cover no-repeat;
|
|
||||||
background-color: #b6bccdd1 !important;
|
|
||||||
}
|
|
||||||
#login .main-container {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
#login .main-container .top {
|
|
||||||
margin-top: 150px;
|
|
||||||
font-size: 30px;
|
|
||||||
color: #ff962a;
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
#login .top .icon-kaoshi {
|
|
||||||
font-size: 80px;
|
|
||||||
}
|
|
||||||
#login .top .title {
|
|
||||||
margin-top: 20px;
|
|
||||||
}
|
|
||||||
#login .bottom {
|
|
||||||
display:flex;
|
|
||||||
justify-content: center;
|
|
||||||
background-color:#fff;
|
|
||||||
border-radius: 5px;
|
|
||||||
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
|
|
||||||
}
|
|
||||||
#login .bottom .title {
|
|
||||||
text-align: center;
|
|
||||||
font-size: 30px;
|
|
||||||
}
|
|
||||||
.bottom .container .title {
|
|
||||||
margin: 30px 0px;;
|
|
||||||
}
|
|
||||||
.bottom .submit .row-login {
|
|
||||||
width: 100%;
|
|
||||||
background-color: #3186cb;
|
|
||||||
border-color: #ffffff;
|
|
||||||
margin: 20px 0px 10px 0px;
|
|
||||||
padding: 15px 20px;
|
|
||||||
}
|
|
||||||
.bottom .submit {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
.footer {
|
|
||||||
margin-top: 50px;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
.footer .msg1 {
|
|
||||||
font-size: 18px;
|
|
||||||
color: #fff;
|
|
||||||
margin-bottom: 15px;
|
|
||||||
}
|
|
||||||
.footer .msg2 {
|
|
||||||
font-size: 14px;
|
|
||||||
color: #e3e3e3;
|
|
||||||
margin-top: 70px;
|
|
||||||
}
|
|
||||||
.bottom .options {
|
|
||||||
margin-bottom: 40px;
|
|
||||||
color: #ff962a;
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
}
|
|
||||||
.bottom .options > a {
|
|
||||||
color: #ff962a;
|
|
||||||
}
|
|
||||||
.bottom .options .register span:nth-child(1) {
|
|
||||||
color: #8C8C8C;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,109 +0,0 @@
|
|||||||
<!--
|
|
||||||
* 左边下拉导航栏
|
|
||||||
*
|
|
||||||
* @Author: ShanZhu
|
|
||||||
* @Date: 2023-11-23
|
|
||||||
-->
|
|
||||||
<template>
|
|
||||||
<div id="left">
|
|
||||||
<el-menu
|
|
||||||
active-text-color="lightgrey"
|
|
||||||
text-color="#000"
|
|
||||||
:default-active="this.$route.path"
|
|
||||||
class="el-menu-vertical-demo"
|
|
||||||
@open="handleOpen"
|
|
||||||
@close="handleClose"
|
|
||||||
:collapse="flag"
|
|
||||||
background-color="#3186cb"
|
|
||||||
menu-trigger="click" router>
|
|
||||||
<el-submenu v-for="(item,index) in menu" :index='item.index' :key="index">
|
|
||||||
<template slot="title">
|
|
||||||
<div class="left-width">
|
|
||||||
<i class="iconfont" :class="item.icon"></i>
|
|
||||||
<span slot="title" class="title">{{item.title}}</span>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
<el-menu-item-group v-for="(list,index1) in item.content" :key="index1" >
|
|
||||||
<el-menu-item @click="handleTitle(item.index)" :index="list.path" v-if="list.item1 != null" style="color:white;">{{list.item1}}</el-menu-item>
|
|
||||||
<el-menu-item @click="handleTitle(item.index)" :index="list.path" v-if="list.item2 != null" style="color:white;">{{list.item2}}</el-menu-item>
|
|
||||||
<el-menu-item @click="handleTitle(item.index)" :index="list.path" v-if="list.item3 != null" style="color:white;">{{list.item3}}</el-menu-item>
|
|
||||||
</el-menu-item-group>
|
|
||||||
</el-submenu>
|
|
||||||
</el-menu>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import {mapState} from 'vuex'
|
|
||||||
export default {
|
|
||||||
name: "mainLeft",
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
|
|
||||||
}
|
|
||||||
},
|
|
||||||
computed: mapState(["flag","menu"]),
|
|
||||||
created() {
|
|
||||||
this.addData()
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
handleOpen(key, keyPath) {
|
|
||||||
// console.log(key, keyPath);
|
|
||||||
},
|
|
||||||
handleClose(key, keyPath) {
|
|
||||||
// console.log(key, keyPath);
|
|
||||||
},
|
|
||||||
//点击标题传递参数给navigator组件
|
|
||||||
handleTitle(index) {
|
|
||||||
this.bus.$emit('sendIndex',index)
|
|
||||||
},
|
|
||||||
addData() {
|
|
||||||
let role = this.$cookies.get("role")
|
|
||||||
if(role == 0) {
|
|
||||||
this.menu.push({
|
|
||||||
index: '5',
|
|
||||||
title: '教师管理',
|
|
||||||
icon: 'icon-Userselect',
|
|
||||||
content:[{item1:'教师管理',path:'/teacherManage'},{item2: '添加教师',path: '/addTeacher'}],
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style>
|
|
||||||
.el-menu-vertical-demo .el-submenu__title {
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
.left-width .iconfont {
|
|
||||||
font-size: 18px;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
.left-width {
|
|
||||||
width: 213px;
|
|
||||||
}
|
|
||||||
.el-menu-vertical-demo:not(.el-menu--collapse) {
|
|
||||||
min-height: 900px;
|
|
||||||
}
|
|
||||||
#left {
|
|
||||||
height: 900px;
|
|
||||||
background-color: CornflowerBlue;
|
|
||||||
z-index: 0;
|
|
||||||
}
|
|
||||||
#left .el-menu-vertical-demo .title {
|
|
||||||
color: #fff;
|
|
||||||
font-size: 16px;
|
|
||||||
font-weight: bold;
|
|
||||||
margin-left: 14px;
|
|
||||||
}
|
|
||||||
.el-submenu {
|
|
||||||
border-bottom: 1px solid #eeeeee0f !important;
|
|
||||||
}
|
|
||||||
.el-submenu__title:hover {
|
|
||||||
background-color: #fff;
|
|
||||||
}
|
|
||||||
.el-submenu__title i {
|
|
||||||
color: #fbfbfc !important;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,11 +0,0 @@
|
|||||||
<!--
|
|
||||||
* 顶部面包屑
|
|
||||||
*
|
|
||||||
* @Author: ShanZhu
|
|
||||||
* @Date: 2023-11-23
|
|
||||||
-->
|
|
||||||
<template>
|
|
||||||
<div class="bar">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</template>
|
|
@ -1,55 +0,0 @@
|
|||||||
<!--
|
|
||||||
* 菜单滑块
|
|
||||||
*
|
|
||||||
* @Author: ShanZhu
|
|
||||||
* @Date: 2023-11-23
|
|
||||||
-->
|
|
||||||
<template>
|
|
||||||
<div id="nav">
|
|
||||||
<el-breadcrumb separator-class="el-icon-arrow-right">
|
|
||||||
<el-breadcrumb-item class="title">{{active.title}}</el-breadcrumb-item>
|
|
||||||
<el-breadcrumb-item v-if="active.item1 != null">{{active.item1}}</el-breadcrumb-item>
|
|
||||||
<el-breadcrumb-item v-if="active.item2 != null">{{active.item2}}</el-breadcrumb-item>
|
|
||||||
<el-breadcrumb-item v-if="active.item3 != null">{{active.item3}}</el-breadcrumb-item>
|
|
||||||
</el-breadcrumb>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import {mapState} from 'vuex'
|
|
||||||
export default {
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
active: [],
|
|
||||||
index1: null,
|
|
||||||
}
|
|
||||||
},
|
|
||||||
computed: mapState(["menu"]),
|
|
||||||
methods: {
|
|
||||||
getIndex() {
|
|
||||||
this.bus.$on('sendIndex',(data)=>{
|
|
||||||
this.index1 = data
|
|
||||||
this.active = this.menu[data-1]
|
|
||||||
// console.log(JSON.stringify(this.active)+'----')
|
|
||||||
})
|
|
||||||
}
|
|
||||||
},
|
|
||||||
created() {
|
|
||||||
this.getIndex()
|
|
||||||
},
|
|
||||||
beforeDestroy() {
|
|
||||||
// this.bus.$off('sendIndex') //销毁
|
|
||||||
},
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
#nav .el-breadcrumb {
|
|
||||||
height: 60px;
|
|
||||||
line-height: 60px;
|
|
||||||
padding-left: 20px;
|
|
||||||
}
|
|
||||||
#nav .el-breadcrumb .title{
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,170 +0,0 @@
|
|||||||
<!--
|
|
||||||
* 开始成绩页面
|
|
||||||
*
|
|
||||||
* @Author: ShanZhu
|
|
||||||
* @Date: 2023-11-23
|
|
||||||
-->
|
|
||||||
<template>
|
|
||||||
<div class="score">
|
|
||||||
<br>
|
|
||||||
<div class="total">
|
|
||||||
<div class="look">
|
|
||||||
本次考试成绩
|
|
||||||
</div>
|
|
||||||
<div class="show">
|
|
||||||
<div class="number" :class="{'border': isTransition}">
|
|
||||||
<span>{{score}}</span>
|
|
||||||
<span>分数</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<ul class="time">
|
|
||||||
<li class="start"><span>开始时间</span> <span>{{startTime}}</span></li>
|
|
||||||
<li class="end"><span>结束时间</span> <span>{{endTime}}</span></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
isTransition: false, //是否渲染完成
|
|
||||||
score: 0, //总分
|
|
||||||
startTime: null, //考试开始时间
|
|
||||||
endTime: null, //考试结束时间
|
|
||||||
}
|
|
||||||
},
|
|
||||||
created() {
|
|
||||||
this.transiton()
|
|
||||||
this.getScore()
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
transiton() { //一秒后过渡
|
|
||||||
setTimeout(() => {
|
|
||||||
this.isTransition = true
|
|
||||||
},1000)
|
|
||||||
},
|
|
||||||
getScore() {
|
|
||||||
let score = this.$route.query.score
|
|
||||||
let startTime = this.$route.query.startTime
|
|
||||||
let endTime = this.$route.query.endTime
|
|
||||||
this.score = score
|
|
||||||
this.startTime = startTime
|
|
||||||
this.endTime = endTime
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="less" scoped>
|
|
||||||
.show {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
img {
|
|
||||||
width: 160px;
|
|
||||||
height: 160px;
|
|
||||||
}
|
|
||||||
.img1Transform {
|
|
||||||
opacity: 1 !important;
|
|
||||||
transform: translateX(30px) !important;
|
|
||||||
transition: all 0.6s ease !important;
|
|
||||||
}
|
|
||||||
.img2Transform {
|
|
||||||
opacity: 1 !important;
|
|
||||||
transform: translateX(-30px) !important;
|
|
||||||
transition: all 0.6s ease !important;
|
|
||||||
}
|
|
||||||
.img1 {
|
|
||||||
margin-top: 70px;
|
|
||||||
opacity: 0;
|
|
||||||
transform: translateX(0px);
|
|
||||||
transition: all 0.6s ease;
|
|
||||||
}
|
|
||||||
.img2 {
|
|
||||||
margin-top: 30px;
|
|
||||||
opacity: 0;
|
|
||||||
transform: translateX(0px);
|
|
||||||
transition: all 0.6s ease;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.time {
|
|
||||||
padding: 0px 70px;
|
|
||||||
li {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-around;
|
|
||||||
padding: 10px;
|
|
||||||
margin: 20px 0px;
|
|
||||||
}
|
|
||||||
li:nth-child(1) {
|
|
||||||
background-color: #fcf8e3;
|
|
||||||
}
|
|
||||||
li:nth-child(2) {
|
|
||||||
background-color: #e9f5e9;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.border {
|
|
||||||
border: 6px solid #36aafd !important;
|
|
||||||
transition: all 2s ease;
|
|
||||||
width: 160px !important;
|
|
||||||
height: 160px !important;
|
|
||||||
transform: rotate(360deg) !important;
|
|
||||||
opacity: 1 !important;
|
|
||||||
}
|
|
||||||
.score {
|
|
||||||
max-width: 800px;
|
|
||||||
margin: 0 auto;
|
|
||||||
.title {
|
|
||||||
margin: 60px 0px 30px 0px;
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
flex-direction: column;
|
|
||||||
.name {
|
|
||||||
font-size: 26px;
|
|
||||||
color: inherit;
|
|
||||||
font-weight: 500;
|
|
||||||
}
|
|
||||||
.description {
|
|
||||||
font-size: 14px;
|
|
||||||
color: #888;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.total {
|
|
||||||
border: 1px solid #dbdbdb;
|
|
||||||
background-color: #fff;
|
|
||||||
padding: 40px;
|
|
||||||
.look {
|
|
||||||
border-bottom: 1px solid #dbdbdb;
|
|
||||||
padding: 0px 0px 14px 14px;
|
|
||||||
color: #36aafd;
|
|
||||||
}
|
|
||||||
.number {
|
|
||||||
opacity: 0;
|
|
||||||
border: 6px solid #fff;
|
|
||||||
transform: rotate(0deg);
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
flex-direction: column;
|
|
||||||
margin: 0 auto;
|
|
||||||
width: 160px;
|
|
||||||
height: 160px;
|
|
||||||
border-radius: 50%;
|
|
||||||
margin-top: 80px;
|
|
||||||
margin-bottom: 20px;
|
|
||||||
transition: all 1s ease;
|
|
||||||
|
|
||||||
span:nth-child(1) {
|
|
||||||
font-size: 36px;
|
|
||||||
font-weight: 600;
|
|
||||||
}
|
|
||||||
span:nth-child(2) {
|
|
||||||
font-size: 14px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
@ -1,274 +0,0 @@
|
|||||||
<!--
|
|
||||||
* 点击试卷缩略信息
|
|
||||||
*
|
|
||||||
* @Author: ShanZhu
|
|
||||||
* @Date: 2023-11-23
|
|
||||||
-->
|
|
||||||
<template>
|
|
||||||
<div id="msg">
|
|
||||||
<div class="title">
|
|
||||||
<span>试卷列表</span>
|
|
||||||
<span>/ {{examData.source}}</span>
|
|
||||||
</div>
|
|
||||||
<div class="wrapper">
|
|
||||||
<ul class="top">
|
|
||||||
<li class="example">{{examData.source}}</li>
|
|
||||||
<li><i class="iconfont icon-pen-"></i></li>
|
|
||||||
<li><i class="iconfont icon-share"></i></li>
|
|
||||||
<li class="right">
|
|
||||||
<div>
|
|
||||||
<span class="count">总分</span>
|
|
||||||
<span class="score">{{score[0]+score[1]+score[2]}}</span>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<ul class="bottom">
|
|
||||||
<li>更新于{{examData.examDate}}</li>
|
|
||||||
<li>来自 {{examData.institute}}</li>
|
|
||||||
<li class="btn">{{examData.type}}</li>
|
|
||||||
<li class="right"><el-button @click="toAnswer(examData.examCode)">{{$store.state.isPractice==true?'开始练习':'开始考试'}}</el-button></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="info">
|
|
||||||
<li @click="dialogVisible = true"><a href="javascript:;"><i class="iconfont icon-info"></i>考生须知</a></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="content">
|
|
||||||
<el-collapse v-model="activeName" >
|
|
||||||
<el-collapse-item class="header" name="0">
|
|
||||||
<template slot="title">
|
|
||||||
<div class="title">
|
|
||||||
<span>{{examData.source}}</span><i class="header-icon el-icon-info"></i>
|
|
||||||
<span class="time">{{score[0]+score[1]+score[2]}}分 / {{examData.totalTime}}分钟</span>
|
|
||||||
<el-button type="primary" size="small">点击查看试题详情</el-button>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
<el-collapse class="inner">
|
|
||||||
<el-collapse-item>
|
|
||||||
<template slot="title">
|
|
||||||
<div class="titlei">选择题 (共{{topicCount[0]}}题 共计{{score[0]}}分)</div>
|
|
||||||
</template>
|
|
||||||
<div class="contenti">
|
|
||||||
<ul class="question" v-for="(list, index) in topic[1]" :key="index">
|
|
||||||
<li>{{index+1}}. {{list.question}} {{list.score}}分</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</el-collapse-item>
|
|
||||||
<el-collapse-item>
|
|
||||||
<template slot="title">
|
|
||||||
<div class="titlei">填空题 (共{{topicCount[1]}}题 共计{{score[1]}}分)</div>
|
|
||||||
</template>
|
|
||||||
<div class="contenti">
|
|
||||||
<ul class="question" v-for="(list, index) in topic[2]" :key="index">
|
|
||||||
<li>{{topicCount[0]+index+1}}.{{list.question}} {{list.score}}分</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</el-collapse-item>
|
|
||||||
<el-collapse-item>
|
|
||||||
<template slot="title">
|
|
||||||
<div class="titlei">判断题 (共{{topicCount[2]}}题 共计{{score[2]}}分)</div>
|
|
||||||
</template>
|
|
||||||
<div class="contenti">
|
|
||||||
<ul class="question" v-for="(list, index) in topic[3]" :key="index">
|
|
||||||
<li>{{topicCount[0]+topicCount[1]+index+1}}. {{list.question}} {{list.score}}分</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</el-collapse-item>
|
|
||||||
</el-collapse>
|
|
||||||
</el-collapse-item>
|
|
||||||
|
|
||||||
</el-collapse>
|
|
||||||
</div>
|
|
||||||
<!--考生须知对话框-->
|
|
||||||
<el-dialog
|
|
||||||
title="考生须知"
|
|
||||||
:visible.sync="dialogVisible"
|
|
||||||
width="30%">
|
|
||||||
<span>{{examData.tips}}</span>
|
|
||||||
<span slot="footer" class="dialog-footer">
|
|
||||||
<el-button @click="dialogVisible = false">知道了</el-button>
|
|
||||||
</span>
|
|
||||||
</el-dialog>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
dialogVisible: false, //对话框属性
|
|
||||||
activeName: '0', //默认打开序号
|
|
||||||
topicCount: [],//每种类型题目的总数
|
|
||||||
score: [], //每种类型分数的总数
|
|
||||||
examData: { //考试信息
|
|
||||||
// source: null,
|
|
||||||
// totalScore: null,
|
|
||||||
},
|
|
||||||
topic: { //试卷信息
|
|
||||||
|
|
||||||
},
|
|
||||||
}
|
|
||||||
},
|
|
||||||
mounted() {
|
|
||||||
this.init()
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
//初始化页面数据
|
|
||||||
init() {
|
|
||||||
let examCode = this.$route.query.examCode //获取路由传递过来的试卷编号
|
|
||||||
this.$axios(`/api/exam/${examCode}`).then(res => { //通过examCode请求试卷详细信息
|
|
||||||
res.data.data.examDate = res.data.data.examDate.substr(0,10)
|
|
||||||
this.examData = { ...res.data.data}
|
|
||||||
let paperId = this.examData.paperId
|
|
||||||
this.$axios(`/api/paper/${paperId}`).then(res => { //通过paperId获取试题题目信息
|
|
||||||
this.topic = {...res.data}
|
|
||||||
let keys = Object.keys(this.topic) //对象转数组
|
|
||||||
keys.forEach(e => {
|
|
||||||
let data = this.topic[e]
|
|
||||||
this.topicCount.push(data.length)
|
|
||||||
let currentScore = 0
|
|
||||||
for(let i = 0; i< data.length; i++) { //循环每种题型,计算出总分
|
|
||||||
currentScore += data[i].score
|
|
||||||
}
|
|
||||||
this.score.push(currentScore) //把每种题型总分存入score
|
|
||||||
})
|
|
||||||
})
|
|
||||||
})
|
|
||||||
},
|
|
||||||
toAnswer(id) {
|
|
||||||
this.$router.push({path:"/answer",query:{examCode: id}})
|
|
||||||
},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="less" scoped>
|
|
||||||
.bottom {
|
|
||||||
.right{
|
|
||||||
.el-button{
|
|
||||||
color: #409EFF;
|
|
||||||
border-color: #c6e2ff;
|
|
||||||
background-color: #ecf5ff;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.right {
|
|
||||||
margin-left: auto;
|
|
||||||
}
|
|
||||||
.inner .contenti .question {
|
|
||||||
margin-left: 40px;
|
|
||||||
color: #9a9a9a;
|
|
||||||
font-size: 14px;
|
|
||||||
}
|
|
||||||
.content .inner .titlei {
|
|
||||||
margin-left: 20px;
|
|
||||||
font-size: 16px;
|
|
||||||
color: #88949b;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
.content .title .time {
|
|
||||||
font-size: 16px;
|
|
||||||
margin-left: 420px;
|
|
||||||
color: #999;
|
|
||||||
}
|
|
||||||
.content .stitle {
|
|
||||||
background-color: #0195ff;
|
|
||||||
}
|
|
||||||
.content .title span {
|
|
||||||
margin-right: 10px;
|
|
||||||
}
|
|
||||||
#msg .content .title {
|
|
||||||
font-size: 20px;
|
|
||||||
margin: 0px;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
.content {
|
|
||||||
margin-top: 20px;
|
|
||||||
background-color: #fff;
|
|
||||||
}
|
|
||||||
.content .header {
|
|
||||||
padding: 10px 30px;
|
|
||||||
}
|
|
||||||
.wrapper .info {
|
|
||||||
margin: 20px 0px 0px 20px;
|
|
||||||
border-top: 1px solid #eee;
|
|
||||||
padding: 20px 0px 10px 0px;
|
|
||||||
}
|
|
||||||
.wrapper .info a {
|
|
||||||
color: #88949b;
|
|
||||||
font-size: 14px;
|
|
||||||
}
|
|
||||||
.wrapper .info a:hover {
|
|
||||||
color: #0195ff;
|
|
||||||
}
|
|
||||||
.wrapper .bottom .btn {
|
|
||||||
cursor: pointer;
|
|
||||||
padding: 5px 10px;
|
|
||||||
border: 1px solid #88949b;
|
|
||||||
border-radius: 4px;
|
|
||||||
}
|
|
||||||
.wrapper .bottom {
|
|
||||||
display: flex;
|
|
||||||
margin-left: 20px;
|
|
||||||
color: #999;
|
|
||||||
font-size: 14px;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
.wrapper .bottom li {
|
|
||||||
margin-right: 14px;
|
|
||||||
}
|
|
||||||
#msg {
|
|
||||||
background-color: #eee;
|
|
||||||
width: 980px;
|
|
||||||
margin: 0 auto;
|
|
||||||
}
|
|
||||||
#msg .title {
|
|
||||||
margin: 20px;
|
|
||||||
}
|
|
||||||
#msg .wrapper {
|
|
||||||
background-color: #fff;
|
|
||||||
padding: 10px;
|
|
||||||
}
|
|
||||||
.wrapper .top {
|
|
||||||
display: flex;
|
|
||||||
margin: 20px;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
.wrapper .top .right {
|
|
||||||
margin-left: auto;
|
|
||||||
}
|
|
||||||
.wrapper .top .example {
|
|
||||||
color: #333;
|
|
||||||
font-size: 22px;
|
|
||||||
font-weight: 700;
|
|
||||||
}
|
|
||||||
.wrapper .top li i {
|
|
||||||
margin-left: 20px;
|
|
||||||
color: #88949b;
|
|
||||||
}
|
|
||||||
.wrapper .right .count {
|
|
||||||
margin-right: 60px;
|
|
||||||
color: #fff;
|
|
||||||
padding: 4px 10px;
|
|
||||||
background-color: #88949b;
|
|
||||||
border-top-left-radius: 4px;
|
|
||||||
border-bottom-left-radius: 4px;
|
|
||||||
border: 1px solid #88949b;
|
|
||||||
}
|
|
||||||
.wrapper .right .score {
|
|
||||||
position: absolute;
|
|
||||||
left: 53px;
|
|
||||||
top: -5px;
|
|
||||||
padding: 1px 12px;
|
|
||||||
font-size: 20px;
|
|
||||||
color: #88949b;
|
|
||||||
border: 1px dashed #88949b;
|
|
||||||
border-left: none;
|
|
||||||
border-top-right-radius: 4px;
|
|
||||||
border-bottom-right-radius: 4px;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
.wrapper .right div {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,152 +0,0 @@
|
|||||||
<!--
|
|
||||||
* 学生考试首页
|
|
||||||
*
|
|
||||||
* @Author: ShanZhu
|
|
||||||
* @Date: 2023-11-23
|
|
||||||
-->
|
|
||||||
<template>
|
|
||||||
<div id="student">
|
|
||||||
<el-row class="padding-50">
|
|
||||||
<el-col :span="24">
|
|
||||||
<ul class="list">
|
|
||||||
<li class="logo"><span>在线考试系统</span></li>
|
|
||||||
<li @click="exam()"><a href="javascript:;" >考试中心</a></li>
|
|
||||||
<li @click="practice()"><a href="javascript:;" >试卷练习</a></li>
|
|
||||||
<li><router-link to="/scoreTable">我的分数</router-link></li>
|
|
||||||
<li><router-link to="/message">交流区</router-link></li>
|
|
||||||
<li class="right" @mouseenter="flag = !flag" @mouseleave="flag = !flag">
|
|
||||||
<a href="javascript:;"><i class="iconfont icon-Userselect icon"></i>{{user.userName}}</a>
|
|
||||||
<div class="msg" v-if="flag">
|
|
||||||
<p @click="manage()">修改密码</p>
|
|
||||||
<p class="exit" @click="exit()">退出</p>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</el-col>
|
|
||||||
</el-row>
|
|
||||||
<!--路由区域-->
|
|
||||||
<div class="main">
|
|
||||||
<router-view></router-view>
|
|
||||||
</div>
|
|
||||||
<v-footer></v-footer>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import myFooter from "@/components/student/myFooter"
|
|
||||||
import {mapState} from 'vuex'
|
|
||||||
export default {
|
|
||||||
components: {
|
|
||||||
"v-footer": myFooter
|
|
||||||
},
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
flag: false,
|
|
||||||
user: {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
created() {
|
|
||||||
this.userInfo()
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
exit() { //退出登录
|
|
||||||
this.$router.push({path:"/"}) //跳转到登录页面
|
|
||||||
this.$cookies.remove("cname") //清除cookie
|
|
||||||
this.$cookies.remove("cid")
|
|
||||||
this.$cookies.remove("rb_token") //清除cookie
|
|
||||||
this.$cookies.remove("rb_role")
|
|
||||||
},
|
|
||||||
manage() { //跳转到修改密码页面
|
|
||||||
this.$router.push({path: '/manager'})
|
|
||||||
},
|
|
||||||
userInfo() {
|
|
||||||
let studentName = this.$cookies.get("cname")
|
|
||||||
let studentId = this.$cookies.get("cid")
|
|
||||||
console.log(`studentId${studentId}`)
|
|
||||||
console.log(`studentName ${studentName}`)
|
|
||||||
this.user.userName = studentName
|
|
||||||
this.user.studentId = studentId
|
|
||||||
},
|
|
||||||
practice() { //跳转练习模式
|
|
||||||
let isPractice = true
|
|
||||||
this.$store.commit("practice", isPractice)
|
|
||||||
this.$router.push({path:'/startExam'})
|
|
||||||
},
|
|
||||||
exam() { //跳转考试模式
|
|
||||||
let isPractice = false
|
|
||||||
this.$store.commit("practice", isPractice)
|
|
||||||
this.$router.push({path:'/student'})
|
|
||||||
}
|
|
||||||
},
|
|
||||||
computed:mapState(["isPractice"])
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
.right .icon {
|
|
||||||
margin-right: 6px;
|
|
||||||
}
|
|
||||||
#student .padding-50 {
|
|
||||||
margin: 0 auto;
|
|
||||||
padding: 0 50px;
|
|
||||||
box-shadow: 0 0 10px 4px rgba(1,149,255,0.1);
|
|
||||||
background-color: #fff;
|
|
||||||
}
|
|
||||||
.list a {
|
|
||||||
text-decoration: none;
|
|
||||||
color: #334046;
|
|
||||||
}
|
|
||||||
li {
|
|
||||||
list-style: none;
|
|
||||||
height: 60px;
|
|
||||||
line-height: 60px;
|
|
||||||
}
|
|
||||||
#student .list{
|
|
||||||
display: flex;
|
|
||||||
}
|
|
||||||
#student .list li {
|
|
||||||
padding: 0 20px;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
#student .list li:hover {
|
|
||||||
background-color: #0195ff;
|
|
||||||
transition: all 2s ease;
|
|
||||||
}
|
|
||||||
#student .list li:hover a {
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
#student .list .right {
|
|
||||||
margin-left: auto;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
#student .list li.right :hover a {
|
|
||||||
color: #000;
|
|
||||||
}
|
|
||||||
#student .list .logo {
|
|
||||||
display: flex;
|
|
||||||
font-weight: bold;
|
|
||||||
color: #2f6c9f;
|
|
||||||
}
|
|
||||||
#student .list .logo i {
|
|
||||||
font-size: 50px;
|
|
||||||
}
|
|
||||||
.right .msg {
|
|
||||||
text-align: center;
|
|
||||||
position: absolute;
|
|
||||||
top: 60px;
|
|
||||||
left: 0px;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
border-radius: 2px;
|
|
||||||
border-bottom: 3px solid #0195ff;
|
|
||||||
background-color: #fff;
|
|
||||||
}
|
|
||||||
.right .msg p {
|
|
||||||
height: 40px;
|
|
||||||
line-height: 40px;
|
|
||||||
width: 105px;
|
|
||||||
}
|
|
||||||
.right .msg p:hover {
|
|
||||||
background-color: #0195ff;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,111 +0,0 @@
|
|||||||
<!--
|
|
||||||
* 管理中心
|
|
||||||
*
|
|
||||||
* @Author: ShanZhu
|
|
||||||
* @Date: 2023-11-23
|
|
||||||
-->
|
|
||||||
<template>
|
|
||||||
<div id='manager'>
|
|
||||||
<el-form :model="ruleForm2" status-icon :rules="rules2" ref="ruleForm2" label-width="100px" class="demo-ruleForm">
|
|
||||||
<h3 class="alter">修改你的密码</h3>
|
|
||||||
<el-form-item label="密码" prop="pass" class="pass">
|
|
||||||
<el-input type="password" v-model="ruleForm2.pass" autocomplete="off"></el-input>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="确认密码" prop="checkPass">
|
|
||||||
<el-input type="password" v-model="ruleForm2.checkPass" autocomplete="off"></el-input>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item>
|
|
||||||
<el-button type="primary" @click="submitForm('ruleForm2')">提交</el-button>
|
|
||||||
<el-button @click="resetForm('ruleForm2')">重置</el-button>
|
|
||||||
</el-form-item>
|
|
||||||
</el-form>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
data() {
|
|
||||||
var validatePass = (rule, value, callback) => {
|
|
||||||
if (value === '') {
|
|
||||||
callback(new Error('请输入密码'));
|
|
||||||
} else {
|
|
||||||
if (this.ruleForm2.checkPass !== '') {
|
|
||||||
this.$refs.ruleForm2.validateField('checkPass');
|
|
||||||
}
|
|
||||||
callback();
|
|
||||||
}
|
|
||||||
};
|
|
||||||
var validatePass2 = (rule, value, callback) => {
|
|
||||||
if (value === '') {
|
|
||||||
callback(new Error('请再次输入密码'));
|
|
||||||
} else if (value !== this.ruleForm2.pass) {
|
|
||||||
callback(new Error('两次输入密码不一致!'));
|
|
||||||
} else {
|
|
||||||
callback();
|
|
||||||
}
|
|
||||||
};
|
|
||||||
return {
|
|
||||||
ispass: true,
|
|
||||||
ruleForm2: {
|
|
||||||
pass: '',
|
|
||||||
checkPass: ''
|
|
||||||
},
|
|
||||||
rules2: {
|
|
||||||
pass: [
|
|
||||||
{ validator: validatePass, trigger: 'blur' }
|
|
||||||
],
|
|
||||||
checkPass: [
|
|
||||||
{ validator: validatePass2, trigger: 'blur' }
|
|
||||||
]
|
|
||||||
}
|
|
||||||
};
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
submitForm(formName) {
|
|
||||||
this.$refs[formName].validate((valid) => {
|
|
||||||
if (valid) {
|
|
||||||
let studentId = this.$cookies.get("cid")
|
|
||||||
this.$axios({ //修改密码
|
|
||||||
url: '/api/studentPWD',
|
|
||||||
method: 'put',
|
|
||||||
data: {
|
|
||||||
pwd: this.ruleForm2.pass,
|
|
||||||
studentId
|
|
||||||
}
|
|
||||||
}).then(res => {
|
|
||||||
if(res.data != null ) { //修改成功提示
|
|
||||||
this.$message({
|
|
||||||
message: '密码修改成功...',
|
|
||||||
type: 'success'
|
|
||||||
})
|
|
||||||
}
|
|
||||||
})
|
|
||||||
} else {
|
|
||||||
console.log('error submit!!');
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
|
||||||
resetForm(formName) {
|
|
||||||
this.$refs[formName].resetFields();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
#manager .pass label{
|
|
||||||
color: red;
|
|
||||||
font-size: 20px;
|
|
||||||
}
|
|
||||||
#manager {
|
|
||||||
width: 600px;
|
|
||||||
margin: 0 auto;
|
|
||||||
margin-top: 100px;
|
|
||||||
text-align: center;
|
|
||||||
margin-bottom: 300px;
|
|
||||||
}
|
|
||||||
#manager .alter {
|
|
||||||
margin: 30px 0px;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,45 +0,0 @@
|
|||||||
<!--
|
|
||||||
* 页脚部分
|
|
||||||
*
|
|
||||||
* @Author: ShanZhu
|
|
||||||
* @Date: 2023-11-23
|
|
||||||
-->
|
|
||||||
<template>
|
|
||||||
<footer id="footer">
|
|
||||||
<ul>
|
|
||||||
<li><a href="javascript:;">关于我们</a></li>
|
|
||||||
<li><a href="javascript:;">免责声明</a></li>
|
|
||||||
<li><a href="javascript:;">使用协议</a></li>
|
|
||||||
<li>@Copyright 杭州水果捞</li>
|
|
||||||
</ul>
|
|
||||||
</footer>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
name: "myFooter"
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
#footer a {
|
|
||||||
color: #919698;
|
|
||||||
font-size: 14px;
|
|
||||||
}
|
|
||||||
#footer {
|
|
||||||
background-color: #eee;
|
|
||||||
}
|
|
||||||
#footer ul {
|
|
||||||
margin-top: 40px;
|
|
||||||
border-top: 1px solid #d5d5d5;
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
height: 80px;
|
|
||||||
line-height: 80px;
|
|
||||||
}
|
|
||||||
#footer ul li {
|
|
||||||
color: #919698;
|
|
||||||
font-size: 14px;
|
|
||||||
margin-right: 20px;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,115 +0,0 @@
|
|||||||
<!--
|
|
||||||
* 添加考试
|
|
||||||
*
|
|
||||||
* @Author: ShanZhu
|
|
||||||
* @Date: 2023-11-23
|
|
||||||
-->
|
|
||||||
<template>
|
|
||||||
<section class="add">
|
|
||||||
<el-form ref="form" :model="form" label-width="80px">
|
|
||||||
<el-form-item label="试卷名称">
|
|
||||||
<el-input v-model="form.source"></el-input>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="介绍">
|
|
||||||
<el-input v-model="form.description"></el-input>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="所属学院">
|
|
||||||
<el-input v-model="form.institute"></el-input>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="所属专业">
|
|
||||||
<el-input v-model="form.major"></el-input>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="年级">
|
|
||||||
<el-input v-model="form.grade"></el-input>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="考试日期">
|
|
||||||
<el-col :span="11">
|
|
||||||
<el-date-picker placeholder="选择日期" v-model="form.examDate" style="width: 100%;" value-format="yyyy-MM-dd"></el-date-picker>
|
|
||||||
</el-col>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="持续时间">
|
|
||||||
<el-input v-model="form.totalTime"></el-input>
|
|
||||||
</el-form-item>
|
|
||||||
<!-- <el-form-item label="总分">
|
|
||||||
<el-input v-model="form.totalScore"></el-input>
|
|
||||||
</el-form-item> -->
|
|
||||||
<el-form-item label="考试类型">
|
|
||||||
<el-input v-model="form.type"></el-input>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="考生提示">
|
|
||||||
<el-input type="textarea" v-model="form.tips"></el-input>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item>
|
|
||||||
<el-button type="primary" @click="onSubmit()">立即创建</el-button>
|
|
||||||
<el-button type="text" @click="cancel()">取消</el-button>
|
|
||||||
</el-form-item>
|
|
||||||
</el-form>
|
|
||||||
</section>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
form: { //表单数据初始化
|
|
||||||
source: null,
|
|
||||||
description: null,
|
|
||||||
institute: null,
|
|
||||||
major: null,
|
|
||||||
grade: null,
|
|
||||||
examDate: null,
|
|
||||||
totalTime: null,
|
|
||||||
totalScore: null,
|
|
||||||
type: null,
|
|
||||||
tips: null,
|
|
||||||
paperId: null,
|
|
||||||
}
|
|
||||||
};
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
formatTime(date) { //日期格式化
|
|
||||||
let year = date.getFullYear()
|
|
||||||
let month= date.getMonth()+ 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1;
|
|
||||||
let day=date.getDate() < 10 ? "0" + date.getDate() : date.getDate();
|
|
||||||
let hours=date.getHours() < 10 ? "0" + date.getHours() : date.getHours();
|
|
||||||
let minutes=date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes();
|
|
||||||
let seconds=date.getSeconds() < 10 ? "0" + date.getSeconds() : date.getSeconds();
|
|
||||||
// 拼接
|
|
||||||
return year+"-"+month+"-"+day+" "+hours+":"+minutes+":"+seconds;
|
|
||||||
},
|
|
||||||
onSubmit() {
|
|
||||||
// let examDate = this.formatTime(this.form.examDate)
|
|
||||||
// this.form.examDate = examDate.substr(0,10)
|
|
||||||
this.$axios(`/api/examManagePaperId`).then(res => {
|
|
||||||
this.form.paperId = res.data.data.paperId + 1 //实现paperId自增1
|
|
||||||
this.$axios({
|
|
||||||
url: '/api/exam',
|
|
||||||
method: 'post',
|
|
||||||
data: {
|
|
||||||
...this.form
|
|
||||||
}
|
|
||||||
}).then(res => {
|
|
||||||
if(res.data.code == 200) {
|
|
||||||
this.$message({
|
|
||||||
message: '数据添加成功',
|
|
||||||
type: 'success'
|
|
||||||
})
|
|
||||||
this.$router.push({path: '/selectExam'})
|
|
||||||
}
|
|
||||||
})
|
|
||||||
})
|
|
||||||
},
|
|
||||||
cancel() { //取消按钮
|
|
||||||
this.form = {}
|
|
||||||
},
|
|
||||||
|
|
||||||
}
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
<style lang="less" scoped>
|
|
||||||
.add {
|
|
||||||
padding: 0px 40px;
|
|
||||||
width: 400px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|