11wqe1 5 months ago
parent
commit
1ad0fa5508
1 changed files with 10 additions and 2 deletions
  1. 10 2
      pbl.js

+ 10 - 2
pbl.js

@@ -776,12 +776,17 @@ router.route("/deleteCourseWorkTwo2").all((req, res, next) => {
     postmysql(req, res, "deleteCourseWorkTwo2");
 });
 
-//查询课程管理导出pdf的数据
+//查询课程管理导出pdf的数据 ym
 router.route("/selectStuCourseReportPdf").all((req, res, next) => {
     var json = queryString(req.url);
     getmysql(req, res, "selectStuCourseReportPdf", json["cid"], json["uid"], json["cla"]);
 });
 
+router.route("/selectStuCourseReportPdfTwo").all((req, res, next) => {
+    var json = queryString(req.url);
+    getmysql(req, res, "selectStuCourseReportPdfTwo", json["cid"], json["uid"], json["cla"]);
+});
+
 //删除提交的作业
 router.route("/deleteCourseWorkS").all((req, res, next) => {
     postmysql(req, res, "deleteCourseWorkS");
@@ -6357,10 +6362,13 @@ router.route("/selectTeacherOfficeType").all(function(req, res, next) {
 
 // 存储学生课程分析数据
 router.route("/upDateAnalysis").all(function(req, res, next) {
-  
     postmysql(req, res, "upDateAnalysis");
 });
 
+// 存储学生课程分析数据 ym
+router.route("/upDateAnalysisTwo").all(function(req, res, next) {
+    postmysql(req, res, "upDateAnalysisTwo");
+});
 
 // 获取教师管理table数据
 router.route("/selectOrgTeachar").all((req, res, next) => {