From 70a9332c9bc76cd79a5015124008b798e1c03d60 Mon Sep 17 00:00:00 2001 From: xuxiaoming Date: Fri, 21 Jan 2022 16:46:35 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../demandPlanning/articleDemand/index.vue | 2 +- .../customerForecastDemandReview/demandPlanning/index.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/productionPlanning/customerForecastDemandReview/demandPlanning/articleDemand/index.vue b/src/views/productionPlanning/customerForecastDemandReview/demandPlanning/articleDemand/index.vue index bc4ccf7..633becf 100644 --- a/src/views/productionPlanning/customerForecastDemandReview/demandPlanning/articleDemand/index.vue +++ b/src/views/productionPlanning/customerForecastDemandReview/demandPlanning/articleDemand/index.vue @@ -216,7 +216,7 @@ editKeyList: [], pagination:{ pageNumber: 1, - pageSize: 22, + pageSize: 22, // 因为每11条为一组 这里的数字应该是 11 的整数倍 .../index.vue 170行 的整数倍 total: 0, } }; diff --git a/src/views/productionPlanning/customerForecastDemandReview/demandPlanning/index.vue b/src/views/productionPlanning/customerForecastDemandReview/demandPlanning/index.vue index f2af56b..3e23a61 100644 --- a/src/views/productionPlanning/customerForecastDemandReview/demandPlanning/index.vue +++ b/src/views/productionPlanning/customerForecastDemandReview/demandPlanning/index.vue @@ -167,7 +167,7 @@ data["Item"].forEach((item, index) => { item.key = item["AP_ArticleDemand-ArtId"]; item.Label = this.labelList[item["AP_ArticleDemand-Label"]]??item["AP_ArticleDemand-Label"]; - if (index % 11 == 0) { + if (index % 11 == 0) { // 每多少条为一组 item.show = true; } else { item.show = false;