detailInitialState.js 817 Bytes
'use strict';

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

let InitialState = Record({
	articleId: '60675',
	article: new (Record({
        isFetching: false,
        error: null,
        data: null,
    })),
    author: new (Record({
        isFetching: false,
        error: null,
        data: null,
    })),
    content: new (Record({
        isFetching: false,
        error: null,
        data: List(),
    })),
    brand: new (Record({
        isFetching: false,
        error: null,
        data: List(),
    })),
    otherArticle: new (Record({
        isFetching: false,
        error: null,
        data: List(),
    })),
    weixin: new (Record({
        isFetching: false,
        error: null,
        data: List(),
    })),
	goods_group_Filter: 0,
	goods_group_y: 0,
});

export default InitialState;