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