guang.articleCategory.js
790 Bytes
/**
* Created by ty on 2016/6/20.
* 文章分类管理
*/
module.exports=function(app) {
app.get("/guang/article/sortindex","guang.articleCategory.Index", function () {
this.$extend = {
iscreate: true,
moduleName: "文章分类管理",
pageName: "文章分类管理"
};
});
/*文章分类管理列表数据*/
app.post("/guang/article/categoryist","articleCategoryManager_getList");
/*文章分类管理-编辑*/
app.post("/guang/article/sort/update","articleCategoryManager_updateSort");
/*文章分类管理-添加*/
app.post("/guang/article/sort/add","articleCategoryManager_addSort");
/*文章分类管理-删除*/
app.post("/guang/article/sort/del","articleCategoryManager_delSort");
}