浏览代码

学生pbl获取数据

11wqe1 1 年之前
父节点
当前提交
dc70338698
共有 1 个文件被更改,包括 6 次插入0 次删除
  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");