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
  | console.log('process.env.TARO_ENV', process.env.TARO_ENV); 
 |    
 |  const tabberConifg = 
 |    process.env.TARO_ENV === 'h5' 
 |      ? ({} as any) 
 |      : { 
 |          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: '#028CFF', 
 |            backgroundColor: '#fff', 
 |            borderStyle: 'black', 
 |            custom: true, 
 |          }, 
 |        }; 
 |    
 |  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: '#2F303D', 
 |      selectedColor: '#028CFF', 
 |      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', 
 |        ], 
 |      }, 
 |      { 
 |        root: 'subpackages/recharge', 
 |        pages: [ 
 |          'phoneBillRecharge/phoneBillRecharge', 
 |          'electricBillRecharge/electricBillRecharge', 
 |          'gasBillRecharge/gasBillRecharge', 
 |          'selectPayType/selectPayType', 
 |          'rechargeResult/rechargeResult', 
 |          'rechargeElectricResult/rechargeElectricResult', 
 |          'rechargeGasResult/rechargeGasResult', 
 |        ], 
 |      }, 
 |      { 
 |        root: 'subpackages/order', 
 |        pages: [ 
 |          'order/order', 
 |          'orderApplyRefund/orderApplyRefund', 
 |          'orderRefundResult/orderRefundResult', 
 |        ], 
 |      }, 
 |      { 
 |        root: 'subpackages/userAccount', 
 |        pages: [ 
 |          'userAccountList/userAccountList', 
 |          'editGasUserAccount/editGasUserAccount', 
 |          'editPhoneUserAccount/editPhoneUserAccount', 
 |          'editElectricUserAccount/editElectricUserAccount', 
 |        ], 
 |      }, 
 |      { 
 |        root: 'subpackages/my', 
 |        pages: [ 
 |          'shareQrcode/shareQrcode', 
 |          'dashboard/dashboard', 
 |          'applyAgent/applyAgent', 
 |          'applyResult/applyResult', 
 |          'AgentRecruitment/AgentRecruitment', 
 |          // 'AgentRecruitmentPoster/AgentRecruitmentPoster', 
 |          'generatePromotionCode/generatePromotionCode', 
 |          'promotionQrcode/promotionQrcode', 
 |        ], 
 |      }, 
 |    ], 
 |    // preloadRule: { 
 |    //   'pages/mine/index': { 
 |    //     network: 'all', 
 |    //     packages: ['subpackages/setting', 'subpackages/message'], 
 |    //   }, 
 |    // }, 
 |  }); 
 |  
  |