|
@@ -5887,6 +5887,21 @@ router.route("/deleteCourseET").all((req, res, next) => {
|
|
|
);
|
|
|
});
|
|
|
|
|
|
+//添加评价资源分类
|
|
|
+router.route("/addCETType").all((req, res, next) => {
|
|
|
+ var json = queryString(req.url);
|
|
|
+ getmysql(
|
|
|
+ req,
|
|
|
+ res,
|
|
|
+ "addCETType",
|
|
|
+ json["pid"],
|
|
|
+ json["ppid"],
|
|
|
+ json["n"],
|
|
|
+ json["uid"],
|
|
|
+ json["oid"],
|
|
|
+ );
|
|
|
+});
|
|
|
+
|
|
|
//数据看板-综合数据
|
|
|
router.route("/selectDataBoardSchool").all((req, res, next) => {
|
|
|
postmysql(req, res, "selectDataBoardSchool");
|