userInitialState.js
1005 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/**
* # 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;