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;