detailInitialState.js
975 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
'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(),
})),
wechat: new (Record({
isFetching: false,
error: null,
wechatAtten: '',
wechatAttenSub: '',
wechatCopy: '有货YOHOBUY',
})),
goods_group_Filter: 0,
goods_group_y: 0,
});
export default InitialState;