Blame view

server/controllers/goods.limitcategory.js 658 Bytes
weiqingting authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
module.exports=function(app) {
    /*品牌货到付款限制页面路由*/
    app.get("/goods/limitcategory/index","goods.limitcategory.Index",function(){
        this.$extend={
            moduleName:"商品管理",
            pageName:"品类限制"
        }
    });

    /*列表数据*/
    app.post("/product/queryProductSortRefundAllReferdSortInfo","limitcategory_queryProductSortRefundAllReferdSortInfo");

    /*开启*/
    app.post("/product/openProductSortRefundExchange","limitcategory_openProductSortRefundExchange");

    /*关闭*/
    app.post("/product/closeProductSortRefundExchange","limitcategory_closeProductSortRefundExchange");

};