shop.shopDecoration.js 1.09 KB
module.exports = function (app) {

    app.get("/supplier/shop/decoration", "shop.DecorationList", function (req,res){
		this.$extend={
            moduleName:"店铺管理",
            pageName:"店铺装修管理"
        };
	});

    app.get("/supplier/store/decorationDetail/:shopsId/:shopType/:shopsType/:id/", "shop.Decoration");

    //店铺列表
    app.post("/shop/ShopsDecoratorRest/findShopsDecorator","shopDecoration_findShopsDecorator");

    //关店
    app.post("/supplier/store/closeShops","shopDecoration_closeShops");

    //开店
    app.post("/supplier/store/openShops","shopDecoration_openShops");
    
    //店铺装修详情
    app.post("/shop/ShopsDecoratorRest/findShopsDecoratorDetail","shopDecoration_findShopsDecoratorDetail");

    //店铺装修保存
    app.post("/shop/ShopsDecoratorRest/saveShopsDecorator","shopDecoration_saveShopsDecorator");

    //热销
    app.post("/shop/ShopsDecoratorRest/findHotProductList","shopDecoration_findHotProductList");

    //最新
    app.post("/shop/ShopsDecoratorRest/findNewProductList","shopDecoration_findNewProductList");

    
}