|
@@ -2187,6 +2187,27 @@ router.route("/selectCourseNew2").all((req, res, next) => {
|
|
|
json["pageSize"]
|
|
|
);
|
|
|
});
|
|
|
+router.route("/selectSynergyCourse").all((req, res, next) => {
|
|
|
+ var json = queryString(req.url);
|
|
|
+ getmysql(
|
|
|
+ req,
|
|
|
+ res,
|
|
|
+ "selectSynergyCourse",
|
|
|
+ json["type"],
|
|
|
+ json["uid"],
|
|
|
+ json["oid"],
|
|
|
+ json["org"],
|
|
|
+ json["typea"],
|
|
|
+ json["typeb"],
|
|
|
+ json["typec"],
|
|
|
+ json["typed"],
|
|
|
+ json["typeE"],
|
|
|
+ json["cu"],
|
|
|
+ json["cn"],
|
|
|
+ json["page"],
|
|
|
+ json["pageSize"]
|
|
|
+ );
|
|
|
+});
|
|
|
router.route("/selectStudentCourseNew2").all((req, res, next) => {
|
|
|
var json = queryString(req.url);
|
|
|
getmysql(
|
|
@@ -2690,6 +2711,11 @@ router.route("/deleteCourse").all((req, res, next) => {
|
|
|
getmysql(req, res, "deleteCourse", json["cid"]);
|
|
|
});
|
|
|
//删除课程
|
|
|
+router.route("/deleteSynergyCourse").all((req, res, next) => {
|
|
|
+ var json = queryString(req.url);
|
|
|
+ getmysql(req, res, "deleteSynergyCourse", json["cid"]);
|
|
|
+});
|
|
|
+//删除课程
|
|
|
router.route("/deleteStudentCourse").all((req, res, next) => {
|
|
|
var json = queryString(req.url);
|
|
|
getmysql(req, res, "deleteStudentCourse", json["cid"]);
|
|
@@ -2698,6 +2724,11 @@ router.route("/deleteStudentCourse").all((req, res, next) => {
|
|
|
router.route("/copyCourse").all((req, res, next) => {
|
|
|
postmysql(req, res, "copyCourse");
|
|
|
});
|
|
|
+//复制课程
|
|
|
+router.route("/copySynergyCourse").all((req, res, next) => {
|
|
|
+ postmysql(req, res, "copySynergyCourse");
|
|
|
+});
|
|
|
+
|
|
|
//复制评价体系
|
|
|
router.route("/copyEva").all((req, res, next) => {
|
|
|
postmysql(req, res, "copyEva");
|