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
| //常量
| const myConstant = {
| uploadFileSizeLimit: 2 * 1024 * 1024,
| visitorDataKey: "visitorData.inleft.com",
| userName: "inleft",
| img404: "this.onerror='';this.src=\"http://t.inleft.com/share/media_photo/idea_beijing.jpg\"",
| defaultBG:"http://t.inleft.com/share/media_photo/background.jpg",
| fileType: {
| fileTypeMarkDown_1: 1,
| fileTypeHtml_2: 2,
| fileTypeVideo_3: 3,
| fileTypeMp3_4: 4,
| fileTypePictures_5: 5,
| fileTypeTalking_9: 9,
| },
| activeKeyType: {
| type_1: "moment",
| type_2: "flash",
| type_3: "store",
| },
| bucketName: {
| bucket_article: "article",
| bucket_video: "mp4",
| bucket_mp3: "mp3",
| bucket_cover: "cover",
| bucket_picture: "picture",
| }
|
| }
|
|
| export default myConstant;
|
|