11wqe1 vor 3 Wochen
Ursprung
Commit
e765b1c0cd
1 geänderte Dateien mit 16 neuen und 0 gelöschten Zeilen
  1. 16 0
      pbl.js

+ 16 - 0
pbl.js

@@ -1688,6 +1688,22 @@ router.route("/getCocostudyTestData").all((req, res, next) => {
     );
 });
 
+//  查询错题  yym
+router.route("/selectcocostudyminbook").all((req, res, next) => {
+    var json = queryString(req.url);
+    getmysql(
+        req,
+        res,
+        "selectcocostudyminbook",
+        json["uid"],
+        json["sid"],
+        json["keyword"],
+        json["mastered"],
+        json["page"],
+        json["pageSize"],
+    );
+});
+
 // 自主学习提交错题本 yym
 router.route("/addcocostudyminbook").all((req, res, next) => {
     postmysql(req, res, "addcocostudyminbook");