userInitialState.js 1005 Bytes
/**
 * # guideInitialState.js
 *
 *
 */
'use strict';
/**
 * ## Import immutable record
 */
import {List, Record} from 'immutable';
/**
 * ## InitialState
 *
 *	shops: List of
 *	new (Record({
 *			id: '',
 *			name: '',
 *		}))
 *
 * The fields we're concerned with
 */
let InitialState = Record({
	error: null,
  	isValid: false,
  	isFetching: false,
	isShowPwd:false,
	profile: new (Record({
		account: '',
		pid: '',
		username: '',
		sessionKey: '',
	})),
    password: new (Record({
        new: '',
        old: '',
        repeat: '',
    })),
	shops: List(),
	listItems: List([
	{
        index: 0,
        icon: require('../../images/tele.png'),
        title: '商服热线:025-87781000-2526',
        subtitle: '点击拨打',
        arrow: '',
    },
    {
        index: 1,
        icon: require('../../images/us.png'),
        title: '关于我们',
        subtitle: '',
        arrow: require('../../images/grey.png'),
    }]),
	isShowUpdate: false,
});

export default InitialState;