#180 修改紧急插单显示

Merged
xuxiaoming merged 2 commits from xuxiaoming into develop 3 years ago
  1. +3
    -3
      src/views/productionPlanning/emergencyOrder/index.vue

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

@ -241,7 +241,7 @@
data["Item"].forEach((item, index) => {
item.key = item["AP_ArticleDemandEmergency-ArtId"];
item.Label = this.labelList[item["AP_ArticleDemandEmergency-Label"]];
if (index % 10 == 0) {
if (index % 11 == 0) {
item.show = true;
} else {
item.show = false;
@ -365,8 +365,8 @@
},
//
arraySpanMethod({ rowIndex, columnIndex }) {
if (rowIndex % 10 > 0 && columnIndex < 8) {
if (rowIndex % 10 == 1 && columnIndex == 0) {
if (rowIndex % 11 > 0 && columnIndex < 8) {
if (rowIndex % 11 == 1 && columnIndex == 0) {
return [9, 8];
} else {
return [0, 0];


Loading…
Cancel
Save