Merge branch 'fix/distribution-statistics-v2-empty-date'

This commit is contained in:
田香琪
2026-09-15 10:43:26 +08:00

View File

@@ -243,8 +243,6 @@ export default {
year: item.year || "",
month: item.month || "",
storeId: item.storeId || "",
startTime: item.startTime || "",
endTime: item.endTime || "",
};
},
onTabChange(name) {
@@ -254,12 +252,6 @@ export default {
this.loadGoods();
}
},
buildQueryParams() {
return {
startTime: this.params.startTime || "",
endTime: this.params.endTime || "",
};
},
formatNumber(val) {
if (val == null || val === "") return 0;
const num = Number(val);
@@ -271,12 +263,11 @@ export default {
},
async loadOverviewData() {
const query = { ...this.params };
const v2Query = this.buildQueryParams();
const [overviewRes, distributorRes, goodsRes, overviewV2Res] = await Promise.all([
API_Statistics.getDistributionOverview(query),
API_Statistics.getDistributionRankDistributor(query),
API_Statistics.getDistributionRankGoods(query),
getDistributionOverviewV2(v2Query),
getDistributionOverviewV2(),
]);
if (overviewRes && overviewRes.success) {
this.overview = overviewRes.result || {};
@@ -294,7 +285,6 @@ export default {
loadBehavior() {
this.behaviorLoading = true;
getDistributionBehaviorV2({
...this.buildQueryParams(),
pageNumber: this.behaviorPage.pageNumber,
pageSize: this.behaviorPage.pageSize,
}).then((res) => {
@@ -312,7 +302,6 @@ export default {
loadGoods() {
this.goodsLoading = true;
getDistributionGoodsV2({
...this.buildQueryParams(),
pageNumber: this.goodsPage.pageNumber,
pageSize: this.goodsPage.pageSize,
}).then((res) => {