Commit 8a2c52cd authored by renjintao's avatar renjintao

plan/indexindex

parent b3c589b0
...@@ -618,16 +618,16 @@ export default { ...@@ -618,16 +618,16 @@ export default {
//移入排产成功后给标题增加数量 //移入排产成功后给标题增加数量
changeCountOut(type, count) { changeCountOut(type, count) {
switch (type) { switch (type) {
case "2": case "2"://智能排产池排产订单数量
this.$store.commit("setCountAi", this.$store.state.countAi + count); this.$store.commit("setCountAi", this.$store.state.countAi + count);
break; break;
case "3": case "3"://整机排产池排产订单数量
this.$store.commit("setCountAll", this.$store.state.countAll + count); this.$store.commit("setCountAll", this.$store.state.countAll + count);
break; break;
case "4": case "4"://流水排产池排产订单数量
this.$store.commit("setCountRun", this.$store.state.countRun + count); this.$store.commit("setCountRun", this.$store.state.countRun + count);
break; break;
default: default://APS排产池排产订单数量
this.$store.commit("setCountAps", this.$store.state.countAps + count); this.$store.commit("setCountAps", this.$store.state.countAps + count);
} }
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment