lsc 2 years ago
parent
commit
180f5c0611
1 changed files with 5 additions and 0 deletions
  1. 5 0
      pbl.js

+ 5 - 0
pbl.js

@@ -703,6 +703,11 @@ router.route('/selectSnameByCid').all((req, res, next) => {
     var json = queryString(req.url);
     getmysql(req, res, "selectSnameByCid", json['cid']);
 });
+//批量上传查询学生分页
+router.route('/selectSnameByCidPage').all((req, res, next) => {
+    var json = queryString(req.url);
+    getmysql(req, res, "selectSnameByCidPage", json['cid'], json['page'], json['num']);
+});
 
 /* 查询学生 */
 router.route('/selectStudent2').all((req, res, next) => {