819527061@qq.com
2024-05-11 f73ed7862edc9c3cb78a2610486643a2fa079fde
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
    "easycom": {
            "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
    },
    "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
        {
            "path": "pages/home/home",
            "style": {
                "navigationBarTitleText": "唐山烟草配送商户端",
                "navigationBarBackgroundColor": "#1F9F4C",
                "navigationBarTextStyle": "white",
                "enablePullDownRefresh":true
                
            }
        },
        {
            "path": "pages/notice/notice",
            "style": {
                "navigationBarTitleText": "通知",
                "navigationBarBackgroundColor": "#1F9F4C",
                "navigationBarTextStyle": "white",
                "enablePullDownRefresh": true
                
            }
        },
        {
            "path": "pages/order/order",
            "style": {
                "navigationBarTitleText": "订单",
                "navigationBarBackgroundColor": "#1F9F4C",
                "navigationBarTextStyle": "white",
                "enablePullDownRefresh":true
            }
        }
        ,{
            "path" : "pages/my/my",
            "style" :                                                                                    
            {
                "navigationBarTitleText": "我的",
                "navigationBarBackgroundColor": "#1F9F4C",
                "navigationBarTextStyle": "white"
                // "enablePullDownRefresh":true
            }
            
        }
    ],
    "subPackages": [
        {
            "root": "pagesA",
            "pages": [
                {
                    "path" : "noticeDetail/noticeDetail",
                    "style": {
                        "navigationBarTitleText": "通知",
                        "navigationBarBackgroundColor": "#1F9F4C",
                        "navigationBarTextStyle": "white"
                        
                    }
                },{
                    "path" : "login/login",
                    "style" :                                                                                    
                    {
                        "navigationBarTitleText": "唐山烟草",
                        "navigationStyle": "custom",
                        "navigationBarTextStyle": "white"
                    }
                    
                }
            ]
        },
        {
            "root": "pagesB",
            "pages": [
                {
                    "path" : "signerManagement/signerManagement",
                    "style": {
                        "navigationBarTitleText": "签收人管理",
                        "navigationBarBackgroundColor": "#1F9F4C",
                        "navigationBarTextStyle": "white"
                        
                    }
                }
            ]
        },
        {
            "root": "pagesC",
            "pages": [
                {
                    "path" : "opinionList/opinionList",
                    "style": {
                        "navigationBarTitleText": "意见与建议",
                        "navigationBarBackgroundColor": "#1F9F4C",
                        "navigationBarTextStyle": "white"
                        
                    }
                }
            ]
        }
    ],
    "preloadRule": {
        "pages/home/home": {
            "network": "all",
            "packages": ["__APP__"]
        }
    },
    "globalStyle": {
        "navigationBarTextStyle": "black",
        "navigationBarTitleText": "智慧烟草",
        "navigationBarBackgroundColor": "#F8F8F8",
        "backgroundColor": "#F8F8F8"
    },
    "tabBar": {
        "color": "#7A7E83",
        "selectedColor": "#008700",
        "borderStyle": "black",
        "backgroundColor": "#ffffff",
        "height": "49px",
        "fontSize": "10px",
        "iconWidth": "20px",
        "spacing": "3px",
        "list": [
            {
                "pagePath": "pages/home/home",
                "iconPath": "static/icon/home.png",
                "selectedIconPath": "static/icon/home-active.png",
                "text": "首页"
            }, {
                "pagePath": "pages/notice/notice",
                "iconPath": "static/icon/notice.png",
                "selectedIconPath": "static/icon/notice-active.png",
                "text": "通知"
            }, {
                "pagePath": "pages/order/order",
                "iconPath": "static/icon/order.png",
                "selectedIconPath": "static/icon/order-active.png",
                "text": "订单"
            }, {
                "pagePath": "pages/my/my",
                "iconPath": "static/icon/my.png",
                "selectedIconPath": "static/icon/my-active.png",
                "text": "我的"
            }
        ]
    }
    
}