report.js
1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/**
* 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.post("/report/getStorageInRptList", "report_getStorageInRptList");
app.post("/report/getStorageOutRptList", "report_getStorageOutRptList");
/*************************************库存报表*************************************/
app.vue("/report/stock", "report.Stock");
app.post("/bigdata/getStorageStatisticsList", "report_getStorageStatisticsList");
/*************************************会员画像*************************************/
app.vue("/report/charts", "report.Charts");
}