From 6a7bdfd3162efd6abe20794a7c67cb0dd0713869 Mon Sep 17 00:00:00 2001 From: wangyilin <1454641981@qq.com> Date: Fri, 13 Sep 2024 09:41:19 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B0=8F=E7=A8=8B=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- collect_information/src/subPages/pages/form/form.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/collect_information/src/subPages/pages/form/form.vue b/collect_information/src/subPages/pages/form/form.vue index 4511c94..26b1795 100644 --- a/collect_information/src/subPages/pages/form/form.vue +++ b/collect_information/src/subPages/pages/form/form.vue @@ -112,7 +112,6 @@ const idCardBlur = (e:string)=>{ const year = birthDate.substring(0, 4); const month = birthDate.substring(4, 6); const day = birthDate.substring(6, 8); - // 格式化为 “某年某月某日” formData.value.dateOfBirth = `${year}年${month}月${day}日` pickerValue.value = new Date(parseInt(year),parseInt(month) - 1,parseInt(day))