From 7aa107b564be3e5c9ae640df702570edd0fd0460 Mon Sep 17 00:00:00 2001 From: yunkexin <760754045@qq.com> Date: Mon, 25 May 2026 15:27:52 +0800 Subject: [PATCH] 1 --- src/layout/FullScreenInter.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/layout/FullScreenInter.js b/src/layout/FullScreenInter.js index 3be5407..33b4e99 100644 --- a/src/layout/FullScreenInter.js +++ b/src/layout/FullScreenInter.js @@ -607,8 +607,8 @@ class FullScreen extends React.Component { getDangerSubData = () => { const orgId = storage('lacal').getItem('webOrgId')?.val; const json = initFilter(orgId); - json.Parameter1 = this.state.selectedStartDate.format('YYYY-MM-DD'); - json.Parameter2 = this.state.selectedEndDate.format('YYYY-MM-DD'); + json.Parameter1 = this.state.selectedStartDate?.format('YYYY-MM-DD') || ''; + json.Parameter2 = this.state.selectedEndDate?.format('YYYY-MM-DD') || ''; this.props.dispatch({ type: 'app/getDataByPost', payload: json,