index.js
547 Bytes
/**
* Created by zw on 2016/6/20.
*/
module.exports = function (app) {
/*************************************视频管理*************************************/
//列表页
app.get("/video/index", "video.Index",function(){
this.$extend={
moduleName:'视频管理',
pageName:'视频管理'
}
});
//视频列表
app.post("/video/queryVideosList", "video_queryVideosList");
//添加产品图片
//app.post("/shotManage/proPhoto/add", "shootMeter_addProductBatchPhoto");
};