|
@@ -221,7 +221,7 @@ export default {
|
|
|
_item.no = no + i + 1
|
|
|
}
|
|
|
}
|
|
|
- this.getStatistics()
|
|
|
+ this.getStatistics(this.queryParam)
|
|
|
this.spinning = false
|
|
|
return data
|
|
|
})
|
|
@@ -277,7 +277,7 @@ export default {
|
|
|
exportFile () {
|
|
|
const _this = this
|
|
|
this.spinning = true
|
|
|
- hdExportExcel(exportShelfOrderReport, this.queryParam, '用户分析(活跃用户)详情', function () {
|
|
|
+ hdExportExcel(exportShelfOrderReport, this.queryParam, '订单数据汇总', function () {
|
|
|
_this.spinning = false
|
|
|
})
|
|
|
},
|
|
@@ -286,8 +286,8 @@ export default {
|
|
|
this.tableHeight = window.innerHeight - tableSearchH - 225
|
|
|
},
|
|
|
// 获取订单汇总统计数据
|
|
|
- getStatistics () {
|
|
|
- queryShelfOrderTotalReport({}).then(res => {
|
|
|
+ getStatistics (ajaxData) {
|
|
|
+ queryShelfOrderTotalReport(ajaxData).then(res => {
|
|
|
if (res.status == 200) {// eslint-disable-line
|
|
|
this.statisticsObj = res.data
|
|
|
} else {
|