|
@@ -1927,6 +1927,16 @@ router.route('/selectBannerByOid').all((req, res, next) => {
|
|
|
var json = queryString(req.url);
|
|
|
getmysql(req, res, "selectBannerByOid", json["oid"]);
|
|
|
});
|
|
|
+//admin 查询banner
|
|
|
+router.route('/getBannerS').all((req, res, next) => {
|
|
|
+ var json = queryString(req.url);
|
|
|
+ getmysql(req, res, "getBannerS");
|
|
|
+});
|
|
|
+//根据学校查询banner
|
|
|
+router.route('/selectBannerByOidS').all((req, res, next) => {
|
|
|
+ var json = queryString(req.url);
|
|
|
+ getmysql(req, res, "selectBannerByOidS", json["oid"]);
|
|
|
+});
|
|
|
//admin 查询课程getSearchCourse
|
|
|
router.route('/getSearchCourse').all((req, res, next) => {
|
|
|
var json = queryString(req.url);
|