|
@@ -3753,6 +3753,23 @@ router.route("/selectPoint1").all((req, res, next) => {
|
|
|
10
|
|
|
);
|
|
|
});
|
|
|
+//根据市级管理者查询全部评分
|
|
|
+router.route("/selectPointAll").all((req, res, next) => {
|
|
|
+ var json = queryString(req.url);
|
|
|
+ getmysql(
|
|
|
+ req,
|
|
|
+ res,
|
|
|
+ "selectPointAll",
|
|
|
+ json["typea"],
|
|
|
+ json["typeb"],
|
|
|
+ json["typec"],
|
|
|
+ json["typed"],
|
|
|
+ json["typeE"],
|
|
|
+ json["cn"],
|
|
|
+ json["cid"],
|
|
|
+ json["title"]
|
|
|
+ );
|
|
|
+});
|
|
|
//查询分配案例
|
|
|
router.route("/selectCaseUser").all((req, res, next) => {
|
|
|
var json = queryString(req.url);
|