-
Notifications
You must be signed in to change notification settings - Fork 1
/
pages.json
executable file
·136 lines (132 loc) · 3.26 KB
/
pages.json
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
133
134
135
136
{
"easycom": {
"^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
},
"pages": [
{
"path": "pages/index/index",
"style": {
"navigationStyle": "custom" ,// 隐藏系统导航栏
"navigationBarTextStyle": "white" // 状态栏字体为白色,只能为 white-白色,black-黑色 二选一
// "navigationBarTitleText": "",
// "app-plus": {
// "titleNView": {
// "buttons" : [{
// "text" : "",
// "fontSize" : "24",
// "select" : true,
// "width" : "auto"
// }]
// }
// }
}
}
,{
"path": "pages/index/current-subject",
"style": {
"navigationBarTitleText": "当前科目"
}
}
,{
"path": "pages/index/chose-subject",
"style": {
"navigationBarTitleText": "选择科目"
}
}
,{
"path" : "pages/index/chose-chapter",
"style" : {
"navigationBarTitleText": "",
"enablePullDownRefresh": false
}
}
,{
"path" : "pages/index/open-subject",
"style" :
{
"navigationBarTitleText": "充值购买",
"enablePullDownRefresh": false
}
}
,{
"path" : "pages/video/video",
"style" : {
"navigationBarTitleText": "课程"
}
}
,{
"path" : "pages/home/home",
"style" : {
"navigationBarTitleText": "我的"
}
}
,{
"path" : "pages/home/opened-subject",
"style" : {
"navigationBarTitleText": "已开通科目",
"enablePullDownRefresh": false
}
}
,{
"path" : "pages/account/signin",
"style" : {
"navigationBarTitleText": "用户登录"
}
}
,{
"path" : "pages/account/signup",
"style" : {
"navigationBarTitleText": "用户注册"
}
}
,{
"path" : "pages/question/answer-sheet",
"style" : {
"navigationBarTitleText": "题卡",
"enablePullDownRefresh": false
}
}
,{
"path" : "pages/question/question-detail",
"style" : {
"navigationBarTitleText": "题目",
"enablePullDownRefresh": false
}
}
,{
"path" : "pages/question/question-note",
"style" : {
"navigationBarTitleText": "笔记",
"enablePullDownRefresh": false
}
}
],
"globalStyle": {
"navigationBarTextStyle": "white",
"navigationBarTitleText": "",
"navigationBarBackgroundColor": "#007AFF",
"backgroundColor": "#FFFFFF"
},
"tabBar": {
"list": [
{
"text": "题库",
"pagePath": "pages/index/index",
"iconPath": "static/icon/index.png",
"selectedIconPath": "static/icon/index-active.png"
},
// {
// "text": "课程",
// "pagePath": "pages/video/video",
// "iconPath": "static/icon/video.png",
// "selectedIconPath": "static/icon/video-active.png"
// },
{
"text": "我的",
"pagePath": "pages/home/home",
"iconPath": "static/icon/home.png",
"selectedIconPath": "static/icon/home-active.png"
}
]
}
}