Browse Source

查询学生课程作业

11wqe1 11 months ago
parent
commit
eb613e8629
1 changed files with 15 additions and 0 deletions
  1. 15 0
      pbl.js

+ 15 - 0
pbl.js

@@ -4883,6 +4883,21 @@ router.route("/selectStudentCourseWorks").all((req, res, next) => {
         10
     );
 });
+//查询学生课程作业
+router.route("/selectStudentCourseWorksTwo").all((req, res, next) => {
+    var json = queryString(req.url); //cid 课程id,page 页数
+    getmysql(
+        req,
+        res,
+        "selectStudentCourseWorksTwo",
+        json["uid"],
+        json["cname"],
+        json["uClass"],
+        json["page"],
+        10
+    );
+});
+
 //查询报告数据
 router.route("/getCourseWorksReport").all((req, res, next) => {
     var json = queryString(req.url); //cid 课程id,page 页数