|
@@ -1543,6 +1543,22 @@ router.route("/selectStudent2").all((req, res, next) => {
|
|
|
10
|
|
|
);
|
|
|
});
|
|
|
+
|
|
|
+/* 新学生管理查询学生 */
|
|
|
+router.route("/selectStudentManage").all((req, res, next) => {
|
|
|
+ var json = queryString(req.url);
|
|
|
+ getmysql(
|
|
|
+ req,
|
|
|
+ res,
|
|
|
+ "selectStudentManage",
|
|
|
+ json["oid"],
|
|
|
+ json["cid"],
|
|
|
+ json["inp"],
|
|
|
+ json["page"],
|
|
|
+ json["num"]
|
|
|
+ );
|
|
|
+});
|
|
|
+
|
|
|
/* 查询教师 */
|
|
|
router.route("/selectTeacher2").all((req, res, next) => {
|
|
|
var json = queryString(req.url);
|