|
|
@@ -5803,6 +5803,11 @@ router.route("/updatePPTHandle").all((req, res, next) => {
|
|
|
router.route("/addPPTFile").all((req, res, next) => {
|
|
|
postmysql(req, res, "addPPTFile");
|
|
|
});
|
|
|
+//查询ppt知识库文件
|
|
|
+router.route("/getPPTFile").all((req, res, next) => {
|
|
|
+ var json = queryString(req.url);
|
|
|
+ getmysql(req, res, "getPPTFile", json["pptid"], json["classid"]);
|
|
|
+});
|
|
|
//查询实时课堂
|
|
|
router.route("/getRealTimeClass").all((req, res, next) => {
|
|
|
var json = queryString(req.url);
|