guang.comment.js 608 Bytes
/**
 * Created by ty on 2016/6/20.
 * 评论管理
 */

module.exports=function(app) {

    app.get("/guang/comments/index","guang.comment.Index", function () {
        this.$extend = {
            iscreate: true,
            moduleName: "评论管理",
            pageName: "评论列表"
        };
    });
    /*评论管理列表数据*/
    app.post("/guang/comment/getList","commentManager_getList");

    /*评论管理-审核*/
    app.post("/guang/comment/audit","commentManager_audit");

    /*评论管理-获取筛选条件*/
    app.post("/guang/comment/getItems","commentManager_getItems");

}