xiebin
2022-09-28 630e2d1d62e73c098a5bf15c0b8d4c2400b337e8
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
67
68
69
70
71
72
73
74
75
76
77
78
{
    "easycom" : {
        "^u-(.*)" : "@/uview-ui/components/u-$1/u-$1.vue"
    },
    "pages" : [
        //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
        {
            "path" : "pages/login/login-account",
            "style" : {
                "navigationBarTitleText" : "登录",
                "enablePullDownRefresh" : false,
                "navigationStyle" : "custom"
            }
        },
        {
            "path" : "pages/service/service",
            "style" : {
                "navigationBarTitleText" : "首页",
                "enablePullDownRefresh" : false,
                "navigationStyle" : "custom"
            }
        },
        {
            "path" : "pages/taskinfo/list",
            "style" : {
                "navigationBarTitleText" : "任务列表",
                "enablePullDownRefresh" : false
            }
        },
        {
            "path" : "pages/home/home",
            "style" : {}
        }
    ],
    "globalStyle" : {
        "navigationBarTextStyle" : "black",
        "navigationBarTitleText" : "",
        "navigationBarBackgroundColor" : "#fff",
        "backgroundColor" : "#F7F7F7"
    },
    "tabBar" : {
        "color" : "#A6ABB5",
        "selectedColor" : "#0BB9C8",
        "borderStyle" : "white",
        "backgroundColor" : "#ffffff",
        "list" : [
            {
                "pagePath" : "pages/service/service",
                "iconPath" : "static/images/tabbar/home.png",
                "selectedIconPath" : "static/images/tabbar/home_selected.png",
                "text" : "首页"
            },
            {
                "pagePath" : "pages/demo/demo",
                "iconPath" : "static/images/tabbar/demo.png",
                "selectedIconPath" : "static/images/tabbar/demo_selected.png",
                "text" : "示例"
            },
            {
                "pagePath" : "pages/user/center",
                "iconPath" : "static/images/tabbar/user.png",
                "selectedIconPath" : "static/images/tabbar/user_selected.png",
                "text" : "我的"
            }
        ]
    },
    "condition" : {
        //模式配置,仅开发期间生效
        "current" : 0, //当前激活的模式(list 的索引项)
        "list" : [
            {
                "name" : "", //模式名称
                "path" : "", //启动页面,必选
                "query" : "" //启动参数,在页面的onLoad函数里面得到
            }
        ]
    }
}