zhangxiaoxu123456
2021-12-20 301289e539c417995f95f5cb91fd1f6043bb7cfd
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
    "easycom": {
        "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
    },
    "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
        {
            "path": "pages/learn/learn",
            "style": {
                "navigationBarTitleText": "学习",
                "navigationStyle": "custom",
                "navigationBarTextStyle": "white"
            }
        },
        {
            "path": "pages/login/login",
            "style": {
                "navigationBarTitleText": "智慧工会",
                "navigationStyle": "custom",
                "navigationBarTextStyle": "white"
            }
        },
        {
            "path": "pages/huiyuan/huiyuan",
            "style": {
                "navigationBarTitleText": "会员",
                "navigationStyle": "custom",
                "navigationBarTextStyle": "white"
            }
        }
    ],
    "subPackages": [
        {
            "root": "pagesA",
            "pages":[
                {
                    "path": "pages/videoDetails/videoDetails"
                },
                {
                    "path": "pages/zhiduDetails/zhiduDetails"
                },
                {
                    "path": "pages/zhidu-form/zhidu-form"
                },
                {
                    "path":"pages/showhfive/showhfive"
                }
            ]
        },
        {
            "root": "pagesB",
            "pages":[
                {
                    "path": "pages/jiaofei/jiaofei"
                },
                {
                    "path": "pages/zhuanhuiApplication/zhuanhuiApplication"
                },
                {
                    "path":"pages/zhuanhuiStauts/zhuanhuiStauts"
                }
            ]
        }
    ],
     "preloadRule": {
        "pagesA/pages/zhidu-form/zhidu-form": {
            "network": "all",
            "packages": ["__APP__"]
        }
    },
    "globalStyle": {
        "navigationBarTextStyle": "black",
        "navigationBarTitleText": "智慧工会",
        "navigationBarBackgroundColor": "#fff",
        "backgroundColor": "#fff",
        "pageOrientation":"auto"  //屏幕旋转
    },
     "tabBar": {
            "color": "#7A7E83",
            "selectedColor": "#ff4e00",
            "borderStyle": "black",
            "backgroundColor": "#ffffff",
            "height": "50px",
            "fontSize": "10px",
            "iconWidth": "24px",
            "spacing": "3px",
            "list": [
                {
                    "pagePath": "pages/learn/learn",
                    "iconPath": "static/icon/learn.png",
                    "selectedIconPath": "static/icon/learn2.png",
                    "text": "学习"
                }, {
                    "pagePath": "pages/huiyuan/huiyuan",
                    "iconPath": "static/icon/huiyuan.png",
                    "selectedIconPath": "static/icon/huiyuan2.png",
                    "text": "会员"
                }
            ]
        }
}