orderDetailInitialState.js 423 Bytes
'use strict';

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

let InitialState = Record({
    isFetching: false,
    error: null,
    tipMessage: '',

    orderCode: '',
    orderInfo: Map(),

	formateData: Map(),
    bankCardsList: List(),
	payCard: Map(),
    showBankSafePayView: false,
    showConfirmPayView: false,
    repayTermList:List(),
    prePaySuccessParam: Map(),


});

export default InitialState;