|
@@ -5211,8 +5211,20 @@ router.route("/selectSTEType").all(function(req, res, next) {
|
|
|
getmysql(req, res, "selectSTEType", json['org'], json['oid']);
|
|
|
});
|
|
|
|
|
|
+//查询学情报告雷达图数据
|
|
|
+router.route("/selectMapStuScore").all(function(req, res, next) {
|
|
|
+ var json = queryString(req.url);
|
|
|
+ // console.log(json);
|
|
|
+ getmysql(req, res, "selectMapStuScore", json['uid'],json['year']);
|
|
|
+});
|
|
|
|
|
|
|
|
|
+//查询学情报告雷达图数据
|
|
|
+router.route("/selectHealthRecord").all(function(req, res, next) {
|
|
|
+ var json = queryString(req.url);
|
|
|
+ // console.log(json);
|
|
|
+ getmysql(req, res, "selectHealthRecord", json['uid'],json['year'],json['txt'],json['page'],4);
|
|
|
+});
|
|
|
|
|
|
|
|
|
|