From cf31137ee2c0dd47252de79c4045a57bee66270c Mon Sep 17 00:00:00 2001 From: xuxiaoming Date: Tue, 1 Nov 2022 09:18:01 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=98=BE=E7=A4=BA=E6=95=B0?= =?UTF-8?q?=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../demandPlanning/articleDemand/index.vue | 4 ++-- .../customerForecastDemandReview/demandPlanning/index.vue | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/productionPlanning/customerForecastDemandReview/demandPlanning/articleDemand/index.vue b/src/views/productionPlanning/customerForecastDemandReview/demandPlanning/articleDemand/index.vue index 5ca7f3d..c2064dd 100644 --- a/src/views/productionPlanning/customerForecastDemandReview/demandPlanning/articleDemand/index.vue +++ b/src/views/productionPlanning/customerForecastDemandReview/demandPlanning/articleDemand/index.vue @@ -252,9 +252,9 @@ editKeyList: [], pagination:{ pageNumber: 1, - pageSize: 24, // 因为每12条为一组 这里的数字应该是 12 的整数倍 .../index.vue 171行 的整数倍 + pageSize: 26, // 因为每13条为一组 这里的数字应该是 13 的整数倍 .../index.vue 171行 的整数倍 total: 0, - pageSizes:[12, 24, 36, 60] + pageSizes:[13, 26, 39, 65] } }; }, diff --git a/src/views/productionPlanning/customerForecastDemandReview/demandPlanning/index.vue b/src/views/productionPlanning/customerForecastDemandReview/demandPlanning/index.vue index 8b4829b..7ee76c1 100644 --- a/src/views/productionPlanning/customerForecastDemandReview/demandPlanning/index.vue +++ b/src/views/productionPlanning/customerForecastDemandReview/demandPlanning/index.vue @@ -24,7 +24,7 @@ // 物料需求表 import ArticleDemand from "./articleDemand"; // 引入vuex - import { mapState, mapMutations } from "vuex"; + import { mapMutations, mapState } from "vuex"; export default { // 设置名称 @@ -168,7 +168,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 % 12 == 0) { // 每多少条为一组 + if (index % 13 == 0) { // 每多少条为一组 item.show = true; } else { item.show = false;