Commit 8a2c52cd authored by renjintao's avatar renjintao

plan/indexindex

parent b3c589b0
......@@ -618,16 +618,16 @@ export default {
//移入排产成功后给标题增加数量
changeCountOut(type, count) {
switch (type) {
case "2":
case "2"://智能排产池排产订单数量
this.$store.commit("setCountAi", this.$store.state.countAi + count);
break;
case "3":
case "3"://整机排产池排产订单数量
this.$store.commit("setCountAll", this.$store.state.countAll + count);
break;
case "4":
case "4"://流水排产池排产订单数量
this.$store.commit("setCountRun", this.$store.state.countRun + count);
break;
default:
default://APS排产池排产订单数量
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