app.config.js
1.63 KB
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
/*
* @Date: 2025-06-28 10:33:00
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-09-06 22:11:14
* @FilePath: /lls_program/src/app.config.js
* @Description: 文件描述
*/
export default {
pages: [
'pages/Dashboard/index',
'pages/Welcome/index',
'pages/auth/index',
'pages/MyFamily/index',
'pages/CreateFamily/index',
'pages/JoinFamily/index',
'pages/Activities/index',
'pages/RewardCategories/index',
'pages/Rewards/index',
'pages/MyRewards/index',
'pages/Profile/index',
'pages/AddProfile/index',
'pages/Feedback/index',
'pages/PointsDetail/index',
'pages/RewardDetail/index',
'pages/PrivacyPolicy/index',
'pages/UserAgreement/index',
'pages/CouponDetail/index',
'pages/EditProfile/index',
'pages/EditFamily/index',
'pages/AlbumList/index',
'pages/ActivitiesCover/index',
'pages/PointsList/index',
'pages/UploadMedia/index',
'pages/FamilyRank/index',
'pages/PosterCheckin/index',
'pages/CheckinList/index',
],
window: {
backgroundTextStyle: 'light',
navigationBarBackgroundColor: '#fff',
navigationBarTitleText: 'WeChat',
navigationBarTextStyle: 'black'
},
// 声明需要使用的私有信息
requiredPrivateInfos: [
'getLocation'
],
// 权限配置
permission: {
'scope.userLocation': {
desc: '您的位置信息将用于活动打卡和位置相关服务'
},
// 'scope.werun': {
// desc: '您的微信运动数据将用于记录步数和健康统计'
// },
// 'scope.userInfo': {
// desc: '您的用户信息将用于个人中心和活动打卡'
// }
}
}