shuishen
2021-09-07 70b392ddda24207abd902f992d1e5d6680d185b4
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
58
59
60
61
62
63
64
65
66
{
    "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
        {
            "path": "pages/index/index",
            "style": {
                "navigationBarTitleText": "抖音",
                "navigationStyle": "custom"
            }
        },
        {
            "path": "pages/index/indexs",
            "style": {
                "navigationBarTitleText": "抖音",
                "navigationStyle": "custom"
            }
        }
        ,{
            "path" : "pages/city/city",
            "style" : {}
        }
        ,{
            "path" : "pages/msg/msg",
            "style" : {}
        }
        ,{
            "path" : "pages/my/my",
            "style" : {}
        }
    ],
    "globalStyle": {
        "navigationBarTextStyle": "white",
        "navigationBarTitleText": "抖音",
        "navigationBarBackgroundColor": "#000000",
        "backgroundColor": "#000000",
        "navigationStyle": "custom"
    },
    "tabBar": {
        "borderStyle": "black",
        "backgroundColor": "#000",
        "color": "#A7A8AD",
        "selectedColor": "#FAFAFC",
        "list": [{
                "pagePath": "pages/index/index",
                "text": "首页"
            },
            {
                "pagePath": "pages/city/city",
                "text": "同城"
            },
            {
                "pagePath": "pages/put/put",
                "iconPath": "static/img/add.png"
            },
            {
                "pagePath": "pages/msg/msg",
                "text": "消息"
            },
            {
                "pagePath": "pages/my/my",
                "text": "我"
            }
        ]
    }
    
    
}