From adc1adefe49d837d756ef730a4ec9c9c2b2a2d84 Mon Sep 17 00:00:00 2001 From: mll Date: Wed, 8 Apr 2026 18:17:22 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9C=88=E6=90=9C=E7=B4=A2=E9=BB=98=E8=AE=A4?= =?UTF-8?q?=E4=B8=BA=E6=9C=AC=E6=9C=88=E6=97=B6=E5=80=BC=E6=94=B9=E4=B8=BA?= =?UTF-8?q?string?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/LowDesign/src/LowReport/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/LowDesign/src/LowReport/index.vue b/src/components/LowDesign/src/LowReport/index.vue index 3739651..a0ab334 100644 --- a/src/components/LowDesign/src/LowReport/index.vue +++ b/src/components/LowDesign/src/LowReport/index.vue @@ -423,7 +423,7 @@ const initTable = async () => { if(['年','年度','年份'].includes(item.fieldName)&&item.searchDefaultValue=='本年'){ tableSearch.value[config.prop]=getCurrentDate().year.toString() }else if( ['月','月度','月份'].includes(item.fieldName)&&item.searchDefaultValue=='本月'){ - tableSearch.value[config.prop]=new Date().getMonth() + 1 + tableSearch.value[config.prop]=(new Date().getMonth() + 1)+'' }else if(item.fieldType=='Date'&&item.searchDefaultValue=='当日'){ tableSearch.value[config.prop]=getCurrentDate().fullDate }else{