Browse Source

学生pbl获取数据

11wqe1 1 year ago
parent
commit
dc70338698
1 changed files with 6 additions and 0 deletions
  1. 6 0
      pbl.js

+ 6 - 0
pbl.js

@@ -4688,6 +4688,12 @@ router.route("/deletePblStudent").all((req, res, next) => {
     postmysql(req, res, "deletePblStudent");
 });
 
+//查询pblstudent单个项目详情
+router.route("/selectPblStudentDetail").all((req, res, next) => {
+    var json = queryString(req.url);
+    getmysql(req, res, "selectPblStudentDetail", json["cid"]);
+});
+
 //添加pblstudent 传uid 用户id t 标题 n 选题
 router.route("/addPblStudent").all((req, res, next) => {
     postmysql(req, res, "addPblStudent");