goods.limitcategory.js 658 Bytes
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");

};