|
@@ -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 页数
|