report.js 1.07 KB
/**
 * Created by wangqianjun on 16/5/25.
 */
module.exports=function(app) {

    /*************************************经营总览*************************************/
    app.vue("/report/businessOverview", "report.BusinessOverview");

    app.post("/report/getShopBusinessOverview", "report_getShopBusinessOverview");

    app.post("/report/getShopBrandRank", "report_getShopBrandRank");


    /*************************************商品销售报表*************************************/
    app.vue("/report/businessSale", "report.BusinessSale");


    /*************************************出入库报表*************************************/
    app.vue("/report/importExportStock", "report.ImportExportStock");


    /*************************************库存报表*************************************/
    app.vue("/report/stock", "report.Stock");

    app.post("/bigdata/getStorageStatisticsList", "report_getStorageStatisticsList");
    

    /*************************************会员画像*************************************/
    app.vue("/report/charts", "report.Charts");
}