Browse Source

修改参数变量

pull/186/head
xuxiaoming 3 years ago
parent
commit
56c939d8f1
3 changed files with 8 additions and 6 deletions
  1. +1
    -1
      src/views/productionPlanning/customerForecastDemandReview/demandPlanning/articleDemand/index.vue
  2. +3
    -2
      src/views/productionPlanning/customerForecastDemandReview/demandPlanning/index.vue
  3. +4
    -3
      src/views/productionPlanning/emergencyOrder/index.vue

+ 1
- 1
src/views/productionPlanning/customerForecastDemandReview/demandPlanning/articleDemand/index.vue View File

@ -216,7 +216,7 @@
editKeyList: [],
pagination:{
pageNumber: 1,
pageSize: 22, // 11 11 .../index.vue 170
pageSize: 24, // 11 11 .../index.vue 170
total: 0,
}
};


+ 3
- 2
src/views/productionPlanning/customerForecastDemandReview/demandPlanning/index.vue View File

@ -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;


+ 4
- 3
src/views/productionPlanning/emergencyOrder/index.vue View File

@ -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;


Loading…
Cancel
Save