homeInitialState.js
369 Bytes
'use strict';
import {Record, List, Map} from 'immutable';
let InitialState = Record({
list: List(),
page: 0,
total: 0,
total_page: 0,
content_code: null,
ptr: false, // 是否下拉刷新
isFetching: false,
error: null,
groupInfo: new (Record({
list: List(),//isFetching error total_page currentPage
fliter: 0,
})),
});
export default InitialState;