Authored by dongjunjie

接口

... ... @@ -50,7 +50,7 @@
type:-1
},
grid:{
url:'/bigdata/getStorageStatisticsList',
url:'/report/getStorageOutRptList',
columns:[
{display:'图片',render(item){
return item.imageUrl?'<img src="'+item.imageUrl+'">':"";
... ...
... ... @@ -49,7 +49,7 @@
type:-1
},
grid:{
url:'/bigdata/getStorageStatisticsList',
url:'/report/getStorageInRptList',
columns:[
{display:'图片',render(item){
return item.imageUrl?'<img src="'+item.imageUrl+'">':"";
... ...
... ... @@ -4,6 +4,7 @@
module.exports=function(app) {
/*************************************经营总览*************************************/
app.vue("/report/businessOverview", "report.BusinessOverview");
app.post("/report/getShopBusinessOverview", "report_getShopBusinessOverview");
... ... @@ -12,23 +13,25 @@ module.exports=function(app) {
/*************************************商品销售报表*************************************/
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");
}
\ No newline at end of file
... ...
... ... @@ -3,12 +3,12 @@ module.exports={
namespace:"report",
apis:{
/*************************************经营总览*************************************/
getShopBusinessOverview:{
title: "获取店铺的经营指标:一个自然日内有效订单商品件数、有效订单商品金额",
domain:"{bigdata}",
url: "/bigdata/getShopBusinessOverview"
},
getShopBrandRank:{
title: "获取店铺的品牌排名,当前等级、排名、上升名词",
domain:"{bigdata}",
... ... @@ -19,7 +19,9 @@ module.exports={
domain:"{bigdata}",
url: "/shop/getOrdersGoodsAccountRptList"
},
/*************************************商品销售报表*************************************/
getOrdersGoodsRptList:{
title:'销售统计',
domain:'{bigdata}',
... ... @@ -38,7 +40,9 @@ module.exports={
sortId:{type:Number}
}
},
/*************************************出入库报表*************************************/
getStorageInRptList:{
title:'发货入库统计',
domain:'{bigdata}',
... ... @@ -71,7 +75,9 @@ module.exports={
sortId:{type:Number}
}
},
/*************************************库存报表*************************************/
getStorageStatisticsList:{
title:"查询库存列表",
domain:"{bigdata}",
... ... @@ -87,6 +93,7 @@ module.exports={
smallSortId:{type: Number}
}
}
/*************************************会员画像*************************************/
}
}
\ No newline at end of file
... ...