From 16a01b7d278a7eb60b56867be0da8abd25418da5 Mon Sep 17 00:00:00 2001 From: shenyanpei Date: Thu, 11 Nov 2021 16:49:38 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A0=87=E5=87=86=E5=8C=96=E6=B4=BB=E5=8A=A8?= =?UTF-8?q?=E6=97=A5=E5=8E=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/localTool/standCalendar/index.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 + '月'