diff --git a/src/views/productionPlanning/customerForecastDemandReview/demandPlanning/articleDemand/index.vue b/src/views/productionPlanning/customerForecastDemandReview/demandPlanning/articleDemand/index.vue index 633becf..7291084 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, // 因为每11条为一组 这里的数字应该是 11 的整数倍 .../index.vue 170行 的整数倍 + pageSize: 24, // 因为每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 3e23a61..696508d 100644 --- a/src/views/productionPlanning/customerForecastDemandReview/demandPlanning/index.vue +++ b/src/views/productionPlanning/customerForecastDemandReview/demandPlanning/index.vue @@ -59,7 +59,8 @@ "AP_ArticleDemand-MinInventory": "最低库存", "AP_ArticleDemand-NetDemandQty": "净生产量", "AP_ArticleDemand-EndingInventory": "期末库存", - "AP_ArticleDemand-ZaituQty":"在途量" + "AP_ArticleDemand-ZaituQty":"在途量", + "AP_ArticleDemand-WeiwaiQty":"委外量" } }; }, @@ -167,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 % 11 == 0) { // 每多少条为一组 + if (index % 12 == 0) { // 每多少条为一组 item.show = true; } else { item.show = false; diff --git a/src/views/productionPlanning/emergencyOrder/index.vue b/src/views/productionPlanning/emergencyOrder/index.vue index a6f92f1..31032eb 100644 --- a/src/views/productionPlanning/emergencyOrder/index.vue +++ b/src/views/productionPlanning/emergencyOrder/index.vue @@ -130,7 +130,7 @@ artList:[], pagination: { pageNumber: 1, - pageSize: 20, + pageSize: 24, total: 0, }, headers: [], @@ -150,7 +150,8 @@ "AP_ArticleDemandEmergency-MinInventory": "最低库存", "AP_ArticleDemandEmergency-NetDemandQty": "净生产量", "AP_ArticleDemandEmergency-EndingInventory": "期末库存", - "AP_ArticleDemandEmergency-ZaituQty":"在途量" + "AP_ArticleDemandEmergency-ZaituQty":"在途量", + "AP_ArticleDemandEmergency-WeiwaiQty":"委外量" } }; }, @@ -242,7 +243,7 @@ data["Item"].forEach((item, index) => { item.key = item["AP_ArticleDemandEmergency-ArtId"]; item.Label = this.labelList[item["AP_ArticleDemandEmergency-Label"]]; - if (index % 11 == 0) { + if (index % 12 == 0) { item.show = true; } else { item.show = false;