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{