Browse Source

新增评分

zengyicheng 2 năm trước cách đây
mục cha
commit
a4124b1649
1 tập tin đã thay đổi với 5 bổ sung1 xóa
  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"]);
+});