From da5a6ff952c3dc7f85118574ef89fffe05ee7398 Mon Sep 17 00:00:00 2001 From: zhangdi <15053473693@163.com> Date: Mon, 29 Dec 2025 17:31:42 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=92=E4=BA=A7=E7=9C=8B=E6=9D=BF=E6=90=9C?= =?UTF-8?q?=E7=B4=A2=E9=80=BB=E8=BE=91=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../schedulingDashboard/container.vue | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) 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 = ''; + } }, // 导出