Browse Source

initialState 변경

pull/2/head
hhjk00 10 months ago
parent
commit
35a2e61d73
  1. 63
      src/modules/statistics/models/index.ts

63
src/modules/statistics/models/index.ts

@ -30,17 +30,74 @@ export interface IStcsSearchRq {
} }
export const initialState = { export const initialState = {
flight: [], flight: [
{
name: '-',
year: '0',
month: '0',
day: '0'
},
{
name: '-',
year: '0',
month: '0',
day: '0'
},
{
name: '-',
year: '0',
month: '0',
day: '0'
}
],
flightSearch: { flightSearch: {
graphData: [], graphData: [],
topData: [] topData: []
}, },
abnormal: [], abnormal: [
{
name: '-',
year: '0',
month: '0',
day: '0'
},
{
name: '-',
year: '0',
month: '0',
day: '0'
},
{
name: '-',
year: '0',
month: '0',
day: '0'
}
],
abnormalSearch: { abnormalSearch: {
graphData: [], graphData: [],
topData: [] topData: []
}, },
result: [], result: [
{
name: '-',
year: '0',
month: '0',
day: '0'
},
{
name: '-',
year: '0',
month: '0',
day: '0'
},
{
name: '-',
year: '0',
month: '0',
day: '0'
}
],
resultSearch: { resultSearch: {
graphData: [], graphData: [],
topData: [] topData: []

Loading…
Cancel
Save