This commit is contained in:
yunkexin 2026-05-25 15:27:52 +08:00
parent 05692eba30
commit 7aa107b564

View File

@ -607,8 +607,8 @@ class FullScreen extends React.Component {
getDangerSubData = () => { getDangerSubData = () => {
const orgId = storage('lacal').getItem('webOrgId')?.val; const orgId = storage('lacal').getItem('webOrgId')?.val;
const json = initFilter(orgId); const json = initFilter(orgId);
json.Parameter1 = this.state.selectedStartDate.format('YYYY-MM-DD'); json.Parameter1 = this.state.selectedStartDate?.format('YYYY-MM-DD') || '';
json.Parameter2 = this.state.selectedEndDate.format('YYYY-MM-DD'); json.Parameter2 = this.state.selectedEndDate?.format('YYYY-MM-DD') || '';
this.props.dispatch({ this.props.dispatch({
type: 'app/getDataByPost', type: 'app/getDataByPost',
payload: json, payload: json,