birthInitialState.js 411 Bytes
'use strict';

import {Record, List, Map} from 'immutable';

let InitialState = Record({
	isFetching: false,
	list: List(),
	currentPage: 0,
	endReached: false,
	total: 0,
	pageSize: 20,
	pageCount: 0,

	showAlert: false,
	notSupportReasons: '',   //1:已领取  2:信息未完善  3:非VIP   4:非生日期间
	notSupportReasonsTitle: '',
	notSupportReasonsMessage: '',
});

export default InitialState;