guang.brandConcern.js 738 Bytes
/**
 * Created by ty on 2016/6/20.
 * 品牌关注
 */

module.exports=function(app) {

    app.get("/guang/relationship/index","guang.brandConcern.Index", function () {
        this.$extend = {
            iscreate: true,
            moduleName: "品牌关系管理",
            pageName: "品牌关系列表"
        };
    });
    /*品牌关注 列表数据*/
    app.post("/guang/relationship/getList","brandConcern_getList");

    /*品牌关注-添加*/
    app.post("/guang/relationship/addRel","brandConcern_addRel");

    /*品牌关注列表-编辑*/
    app.post("/guang/relationship/updateRel","brandConcern_updateRel");

    /*品牌关注列表-删除*/
    app.post("/guang/relationship/delRel","brandConcern_delRel");

}