diff --git a/src/views/productionSchedulingPlan/schedulingDashboard/container.vue b/src/views/productionSchedulingPlan/schedulingDashboard/container.vue index abbf24b..ec3de2a 100644 --- a/src/views/productionSchedulingPlan/schedulingDashboard/container.vue +++ b/src/views/productionSchedulingPlan/schedulingDashboard/container.vue @@ -909,13 +909,26 @@ export default { return `星期${days[dayIndex]}`; }, processChange(val) { - this.formLabelAlign.processName = val.name; + console.log(9999, val); + if (val) { + this.formLabelAlign.processName = val.name; + } else { + this.formLabelAlign.processName = ''; + } }, equipChange(val) { - this.formLabelAlign.equipName = val.deviceName; + if (val) { + this.formLabelAlign.equipName = val.deviceName; + } else { + this.formLabelAlign.equipName = ''; + } }, teamChange(val) { - this.formLabelAlign.teamName = val.tsName; + if (val) { + this.formLabelAlign.teamName = val.tsName; + } else { + this.formLabelAlign.teamName = ''; + } }, // 导出