pages.json
2.2 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
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
{
"easycom": {
"^u-(.*)": "@/uni_modules/uview-ui/components/u-$1/u-$1.vue",
"^c-(.*)": "@/components/c-$1/c-$1.vue"
},
"condition": { //模式配置,仅开发期间生效
"current": 0, //当前激活的模式(list 的索引项)
"list": [{
"name": "defult", //模式名称
"path": "pages/main/my/mobileLogin/mobileLogin",
"query": ""
}]
},
"pages": [{
"path": "pages/tabBar/home/home",
"style": {
"navigationBarTitleText": "人人推",
"navigationBarTextStyle": "black",
"enablePullDownRefresh": false
}
},
{
"path": "pages/tabBar/internship/internship",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": ""
}
},
{
"path": "pages/tabBar/my/my",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": ""
}
}
],
"subPackages": [{
"root": "pages/main/my",
"pages": [{
"path": "login/login",
"style": {
"navigationBarTitleText": "登录",
"enablePullDownRefresh": false
}
},
{
"path": "mobileLogin/mobileLogin",
"style": {
"navigationBarTitleText": "手机登录",
"enablePullDownRefresh": false
}
}
]
}],
"preloadRule": {
},
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uView",
"navigationBarBackgroundColor": "#FFFFFF",
"backgroundColor": "#FFFFFF",
"fontSize": "36rpx"
},
"tabBar": {
"color": "#000000",
"selectedColor": "#F64114",
"backgroundColor": "#FFFFFF",
"borderStyle": "black",
"height": "100rpx",
"fontSize": "40rpx",
"list": [{
"pagePath": "pages/tabBar/home/home",
"iconPath": "/static/img/icon/home.png",
"selectedIconPath": "/static/img/icon/homeHL.png",
"text": "首页"
},
{
"pagePath": "pages/tabBar/internship/internship",
"iconPath": "/static/img/icon/position.png",
"selectedIconPath": "/static/img/icon/positionHL.png",
"text": "实习"
},
{
"pagePath": "pages/tabBar/my/my",
"iconPath": "/static/img/icon/my.png",
"selectedIconPath": "/static/img/icon/myHL.png",
"text": "我的"
}
]
}
}