shareDetailInitialState.js
457 Bytes
'use strict';
import {List, Map, Record} from 'immutable';
let InitialState = Record({
isFetching: false,
error: '',
productInfo: {},
isCollect: 'N',
shareCodeInfo: null,
productList: new (Record({
isFetching: false,
error: null,
product_list: List(),
page: 0,
total: 0,
pagetotal: 0,
pageSize: 20,//60,
endReached: false,
})),
});
export default InitialState;