refoundStatisticsInitialState.js
373 Bytes
'use strict';
import {List, Record} from 'immutable';
let InitialState = Record({
isFetching: false,
error: null,
month:'',
refoundSum:0,
sumRatio:0,
sumRise:true,
refoundCount:0,
countRatio:0,
countRise:true,
refoundPercent:0,
percentRatio:0,
percentRise:false,
trendInSixMonth: List([11, 30, 140, 80, 110, 130]),
});
export default InitialState;