From b6014fcb9fbdb70951a0eb51b07c56585c75ae3f Mon Sep 17 00:00:00 2001 From: kuaileWu <1432334894@qq.com> Date: Fri, 4 Jul 2025 10:34:56 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=B8=8A=E5=8D=88=E5=B7=A5?= =?UTF-8?q?=E4=BD=9C=E6=97=B6=E9=97=B4=E6=88=96=E4=B8=8B=E5=8D=88=E5=B7=A5?= =?UTF-8?q?=E4=BD=9C=E6=97=B6=E9=97=B4=E4=B8=BA=E7=A9=BA=E6=97=B6=EF=BC=8C?= =?UTF-8?q?=E4=BF=9D=E5=AD=98=E7=A7=91=E5=AE=A4=E5=87=BA=E8=AF=8A=E6=97=B6?= =?UTF-8?q?=E9=97=B4=E5=A4=B1=E8=B4=A5=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/HosInformation.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/HosInformation.vue b/src/views/HosInformation.vue index 5202099..907e0d4 100644 --- a/src/views/HosInformation.vue +++ b/src/views/HosInformation.vue @@ -1046,8 +1046,8 @@ export default { })); props={ - morning_worktime:this.form.morning_worktime.join('-'), - afternoon_worktime:this.form.afternoon_worktime.join('-'), + morning_worktime:this.form.morning_worktime?this.form.morning_worktime.join('-'):'', + afternoon_worktime:this.form.afternoon_worktime? this.form.afternoon_worktime.join('-') : '', week_visit_plan:JSON.stringify(worktimesArray), } -- 1.8.3.1