This commit is contained in:
liushiwei
2024-10-30 09:42:08 +08:00
parent 86f4256eb4
commit bbde4e3f3f
5 changed files with 55949 additions and 16 deletions

View File

@@ -3,7 +3,7 @@
<ai-title
slot="title"
title="物流统计"
tips="数据来源于“履约服务账单->明细->缴费记录"
tips="数据来源于“履约服务账单->明细->缴费记录"
isShowBottomBorder>
</ai-title>
<template slot="content">
@@ -184,7 +184,7 @@ import {sendChromeAPIMessage } from '@/api/chromeApi'
let item = res.result.list[i]
this.totalLogisticFee += item.amount
this.transList.push(item.ptransId)
this.transList.push({ptransId: item.ptransId, chargeType: item.chargeType} )
}
if ((this.reqData.pageSize * this.reqData.pageNum) < res.result.total) {
this.reqData.pageNum ++
@@ -203,10 +203,10 @@ import {sendChromeAPIMessage } from '@/api/chromeApi'
needMallId: true,
mallId: this.$store.state.mallList[0].mallId,
data: {
chargeType: 0,
chargeType: this.transList[i].chargeType,
pageSize: 100,
pageNum: 1,
ptransId: this.transList[i]
ptransId: this.transList[i].ptransId
}})
if (res.errorCode == 1000000) {
for (let k = 0; k < res.result.list.length; k++) {