Houjie
2025-04-11 1bf977929dd324f3ac64b70debd8a79443c54392
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
{
    "pages": [
        //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
        {
            "path": "pages/login/login",
            "style": {}
        }, {
            "path": "pages/login/loginOauth2",
            "style": {}
        },
        {
            "path": "pages/index/index",
            "style": {}
        },
        {
            "path": "pages/basics/layout",
            "style": {}
        },
        {
            "path": "pages/basics/background",
            "style": {}
        },
        {
            "path": "pages/basics/text",
            "style": {}
        },
        {
            "path": "pages/basics/icon",
            "style": {}
        },
        {
            "path": "pages/basics/button",
            "style": {}
        },
        {
            "path": "pages/basics/design",
            "style": {}
        },
        {
            "path": "pages/basics/tag",
            "style": {}
        },
        {
            "path": "pages/basics/avatar",
            "style": {}
        },
        {
            "path": "pages/basics/progress",
            "style": {}
        },
        {
            "path": "pages/basics/shadow",
            "style": {}
        },
        {
            "path": "pages/basics/loading",
            "style": {}
        },
        {
            "path": "pages/component/bar",
            "style": {}
        },
        {
            "path": "pages/component/nav",
            "style": {}
        },
        {
            "path": "pages/component/list",
            "style": {}
        },
        {
            "path": "pages/component/card",
            "style": {}
        },
        {
            "path": "pages/component/form",
            "style": {}
        },
        {
            "path": "pages/component/timeline",
            "style": {}
        },
        {
            "path": "pages/component/chat",
            "style": {}
        },
        {
            "path": "pages/component/swiper",
            "style": {}
        },
        {
            "path": "pages/component/modal",
            "style": {}
        },
        {
            "path": "pages/component/steps",
            "style": {}
        }, {
            "path": "pages/plugin/indexes",
            "style": {}
        }, {
            "path": "pages/plugin/animation",
            "style": {}
        }, {
            "path": "pages/plugin/drawer",
            "style": {}
        }, {
            "path": "pages/plugin/verticalnav",
            "style": {}
        }, {
            "path": "pages/home/home",
            "style": {}
        },
        {
            "path": "pages/spare/spare",
            "style": {}
        },
        {
            "path": "pages/device/device",
            "style": {}
        },
        {
            "path": "pages/user/userexit",
            "style": {}
        }, {
            "path": "pages/user/userdetail",
            "style": {}
        }, {
            "path": "pages/user/useredit",
            "style": {}
        }, {
            "path": "pages/user/people",
            "style": {}
        }, {
            "path": "pages/common/exit",
            "style": {}
        }, {
            "path": "pages/common/success",
            "style": {}
        }, {
            "path": "pages/user/location",
            "style": {},
            "permission": {
                "scope.userLocation": {
                    "desc": "你的位置信息将用于小程序位置接口的效果展示" // 高速公路行驶持续后台定位
                }
            }
        }, {
            "path": "pages/addressbook/address-book",
            "style": {}
        }, {
            "path": "pages/addressbook/level-address-book",
            "style": {}
        },
        {
            "path": "pages/addressbook/member",
            "style": {}
        }, {
            "path": "pages/addressbook/address-detail",
            "style": {}
        }, {
            "path": "pages/annotation/annotationList",
            "style": {
                "app-plus": {
                    "bounce": "none" //删除此项: mescroll-body支持iOS回弹
                }
            }
        }, {
            "path": "pages/annotation/annotationDetail",
            "style": {}
        }, {
            "path": "pages/common/helloWorld",
            "style": {}
        },
        {
            "path": "pages/TaskManager/TaskManagerList",
            "style": {
                "app-plus": {
                    "bounce": "none" //删除此项: mescroll-body支持iOS回弹
                }
            }
        }
 
 
    ],
    "globalStyle": {
        "mp-alipay": {
            /* 支付宝小程序特有相关 */
            "transparentTitle": "always",
            "allowsBounceVertical": "NO"
        },
        "navigationBarBackgroundColor": "#0081ff",
        "navigationBarTitleText": "JEECG BOOT",
        "navigationStyle": "custom",
        "navigationBarTextStyle": "white"
    },
    "usingComponts": true,
    "condition": { //模式配置,仅开发期间生效
        "current": 0, //当前激活的模式(list 的索引项)
        "list": [{
            "name": "表单", //模式名称
            "path": "pages/index/index", //启动页面
            "query": "" //启动参数
        }]
    }
 
}