app.config.js
993 Bytes
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
/*
* @Date: 2025-06-28 10:33:00
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-07-03 12:59:10
* @FilePath: /jgdl/src/app.config.js
* @Description: 文件描述
*/
export default {
pages: [
'pages/index/index',
'pages/post/index',
'pages/sell/index',
'pages/messages/index',
'pages/profile/index',
'pages/editProfile/index',
'pages/register/index',
'pages/authCar/index',
'pages/setAuthCar/index',
'pages/newCarList/index',
'pages/goodCarList/index',
'pages/productDetail/index',
'pages/auth/index',
'pages/myFavorites/index',
'pages/myCar/index',
'pages/myOrders/index',
],
subpackages: [ // 配置在tabBar中的页面不能分包写到subpackages中去
{
root: 'pages/demo',
pages: ['index'],
},
],
window: {
backgroundTextStyle: 'light',
navigationBarBackgroundColor: '#fb923c',
navigationBarTitleText: 'WeChat',
navigationBarTextStyle: 'white'
},
}