Browse Source

新增评分

zengyicheng 2 years ago
parent
commit
a4124b1649
1 changed files with 5 additions and 1 deletions
  1. 5 1
      pbl.js

+ 5 - 1
pbl.js

@@ -1622,7 +1622,11 @@ router.route('/insertCase').all((req, res, next) => {
         });
     }
 });
-
+//新增评分 
+router.route('/addScore').all((req, res, next) => {
+    var json = queryString(req.url);
+    getmysql(req, res, "addScore", json["rid"], json["suser"], json["s"]);
+});