brand.js 1.77 KB
module.exports = function (app){
    app.get("/erpproduct/brands/index", "brand.Index", function (req,res){
        this.$extend={
            moduleName:"品牌管理",
            pageName:"品牌管理"
        }
    });

    app.get("/erpproduct/brands/edit/:brandId", "brand.Edit", "brand_getBrandDetail", function (rs,req,res){
        this.$extend={
            action: '/brand/edit',
            data:rs.data
        };
        return rs.data;
    });

    app.get("/erpproduct/brands/add", "brand.Edit", function (req,res){
        this.$extend={
            action:'/erpproduct/ajax/brands/add',
            data:{}
        }
    });

    //品牌管理列表
    app.post("/brand/getBrandList","brand_index");

    //保存修改品牌
    app.post("/brand/edit","brand_editBrand");

    //修改品牌状态
    app.post("/brand/updateStatus","brand_updateStatus");

    //添加品牌
    app.post("/erpproduct/ajax/brands/add","brand_addBrand");

    //品牌装修 - 列表页
    app.get("/erpproduct/brands/decorate/index", "brand.decorate.Index", function (req,res){
        this.$extend={
            moduleName:"品牌装修管理",
            pageName:"品牌装修管理"
        }
    });

    //品牌装修管理列表
    app.post("/brand/getBrandDecorateList","brand_decorateList");

    //修改hot
    app.post("/brand/updateIsHot","brand_updateIsHot");

    //修改new
    app.post("/brand/updateIsNew","brand_updateIsNew");

    app.get("/erpproduct/brands/decorate/edit/:brandId", "brand.decorate.Edit", "brand_getBrandDetail", function (rs,req,res){
        this.$extend={
            action: '/brand/editDecorate',
            data:rs.data
        };
        return rs.data;
    });
    //保存修改品牌
    app.post("/brand/editDecorate","brand_editBrandDecorate");
}