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;