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