Browse Source

修改显示数量

develop
xuxiaoming 2 years ago
parent
commit
cf31137ee2
2 changed files with 4 additions and 4 deletions
  1. +2
    -2
      src/views/productionPlanning/customerForecastDemandReview/demandPlanning/articleDemand/index.vue
  2. +2
    -2
      src/views/productionPlanning/customerForecastDemandReview/demandPlanning/index.vue

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

@ -252,9 +252,9 @@
editKeyList: [], editKeyList: [],
pagination:{ pagination:{
pageNumber: 1, pageNumber: 1,
pageSize: 24, // 12 12 .../index.vue 171
pageSize: 26, // 13 13 .../index.vue 171
total: 0, total: 0,
pageSizes:[12, 24, 36, 60]
pageSizes:[13, 26, 39, 65]
} }
}; };
}, },


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

@ -24,7 +24,7 @@
// //
import ArticleDemand from "./articleDemand"; import ArticleDemand from "./articleDemand";
// vuex // vuex
import { mapState, mapMutations } from "vuex";
import { mapMutations, mapState } from "vuex";
export default { export default {
// //
@ -168,7 +168,7 @@
data["Item"].forEach((item, index) => { data["Item"].forEach((item, index) => {
item.key = item["AP_ArticleDemand-ArtId"]; item.key = item["AP_ArticleDemand-ArtId"];
item.Label = this.labelList[item["AP_ArticleDemand-Label"]]??item["AP_ArticleDemand-Label"]; item.Label = this.labelList[item["AP_ArticleDemand-Label"]]??item["AP_ArticleDemand-Label"];
if (index % 12 == 0) { //
if (index % 13 == 0) { //
item.show = true; item.show = true;
} else { } else {
item.show = false; item.show = false;


Loading…
Cancel
Save