diff --git a/src/pages/localTool/standCalendar/index.vue b/src/pages/localTool/standCalendar/index.vue index 0973a7909..aa0bb6923 100644 --- a/src/pages/localTool/standCalendar/index.vue +++ b/src/pages/localTool/standCalendar/index.vue @@ -68,7 +68,7 @@ 会议附件 : {{ '-' }} - {{ res.name }} + {{ res.name }} {{ ';'}} @@ -114,6 +114,9 @@ export default { let yy = new Date().getFullYear(); let mm = new Date().getMonth() + 1; let dd = new Date().getDate(); + if (mm<10) { + mm = this.padding0(mm, 2) + } this.nowDate = yy + '-' + mm + '-' + dd this.formData.year = yy + '年' this.formData.month = mm + '月'