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
| export default defineAppConfig({
| entryPagePath: 'pages/home/index',
| pages: ['pages/home/index', 'pages/mine/index'],
| requiredPrivateInfos: ['getLocation'],
| permission: {
| 'scope.userLocation': {
| desc: '你的位置信息将用于小程序数据的效果展示',
| },
| },
| window: {
| backgroundTextStyle: 'light',
| navigationBarBackgroundColor: '#ff6d33',
| navigationBarTitleText: 'WeChat',
| navigationBarTextStyle: 'black',
| backgroundColorTop: '#ff6d33',
| backgroundColor: '#f7f7f7',
| backgroundColorBottom: '#f7f7f7',
| navigationStyle: 'custom',
| },
| tabBar: {
| list: [
| {
| pagePath: 'pages/home/index',
| iconPath: 'assets/tabbar/icon-home.png',
| selectedIconPath: 'assets/tabbar/icon-home-active.png',
| text: '首页',
| },
| {
| pagePath: 'pages/mine/index',
| iconPath: 'assets/tabbar/icon-mine.png',
| selectedIconPath: 'assets/tabbar/icon-mine-active.png',
| text: '我的',
| },
| ],
| color: '#333',
| selectedColor: '#3a71ff',
| backgroundColor: '#fff',
| borderStyle: 'black',
| custom: true,
| },
| lazyCodeLoading: 'requiredComponents',
| subpackages: [
| {
| root: 'subpackages/login',
| pages: [
| 'authorization/authorization',
| 'userPolicy/userPolicy',
| 'mineUserPolicy/mineUserPolicy',
| 'privacyPolicy/privacyPolicy',
| 'loginByForm/loginByForm',
| 'registerForm/registerForm',
| ],
| },
| ],
| // preloadRule: {
| // 'pages/mine/index': {
| // network: 'all',
| // packages: ['subpackages/setting', 'subpackages/message'],
| // },
| // },
| });
|
|