Commit 07f5c4e7 authored by renjintao's avatar renjintao

plan 排产

parent fc72b872
......@@ -614,13 +614,13 @@ export default {
//移入排产前选择排产模型
onchangeScheduleType(val) {
switch (val) {
case "2":
case "4":
this.scheduleTypeName = "智能排产";
break;
case "3":
case "2":
this.scheduleTypeName = "整机排产";
break;
case "4":
case "3":
this.scheduleTypeName = "流水排产";
break;
default:
......@@ -630,13 +630,13 @@ export default {
//移入排产成功后给标题增加数量
changeCountOut(type, count) {
switch (type) {
case "2": //智能排产池排产订单数量
case "4": //智能排产池排产订单数量
this.$store.commit("setCountAi", this.$store.state.countAi + count);
break;
case "3": //整机排产池排产订单数量
case "2": //整机排产池排产订单数量
this.$store.commit("setCountAll", this.$store.state.countAll + count);
break;
case "4": //流水排产池排产订单数量
case "3": //流水排产池排产订单数量
this.$store.commit("setCountRun", this.$store.state.countRun + count);
break;
default:
......
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