修复上午工作时间或下午工作时间为空时,保存科室出诊时间失败问题 #6

Merged
kuaileadmin merged 1 commits from zq-0627 into master 2 weeks ago
  1. 4
      src/views/HosInformation.vue

4
src/views/HosInformation.vue

@ -1046,8 +1046,8 @@ export default {
})); }));
props={ props={
morning_worktime:this.form.morning_worktime.join('-'), morning_worktime:this.form.morning_worktime?this.form.morning_worktime.join('-'):'',
afternoon_worktime:this.form.afternoon_worktime.join('-'), afternoon_worktime:this.form.afternoon_worktime? this.form.afternoon_worktime.join('-') : '',
week_visit_plan:JSON.stringify(worktimesArray), week_visit_plan:JSON.stringify(worktimesArray),
} }

Loading…
Cancel
Save