|
@@ -5213,6 +5213,18 @@ router.route("/getCourseScore").all((req, res, next) => {
|
|
|
getmysql(req, res, "getCourseScore", json["cid"]);
|
|
|
});
|
|
|
|
|
|
+//查看已有作业功能
|
|
|
+router.route("/selectWorkByCidAi").all((req, res, next) => {
|
|
|
+ var json = queryString(req.url);
|
|
|
+ getmysql(req, res, "selectWorkByCidAi", json["cid"], json["classid"]);
|
|
|
+});
|
|
|
+
|
|
|
+//插叙单个学生作业
|
|
|
+router.route("/selectWorkByCidAiByUid").all((req, res, next) => {
|
|
|
+ var json = queryString(req.url);
|
|
|
+ getmysql(req, res, "selectWorkByCidAiByUid", json["cid"], json["uid"]);
|
|
|
+});
|
|
|
+
|
|
|
|
|
|
//获取多个项目基本信息
|
|
|
router.route("/getCourseInfoMore").all((req, res, next) => {
|