pages.json
3.3 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
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"pages": [
//pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
// 发现
// 授权
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "发现",
"navigationBarBackgroundColor": "#fff",
"navigationBarTextStyle": "black"
}
},
{
"path": "pages/start/start",
"style": {
"navigationBarTitleText": "赋能师成长数据化",
"navigationBarBackgroundColor": "#fff",
"navigationBarTextStyle": "black"
}
},
// 个人中心
{
"path": "pages/mine/circlepic",
"style": {
"navigationBarTitleText": "个人中心",
"navigationBarBackgroundColor": "#fff",
"navigationBarTextStyle": "black"
}
},
// 个人中心
{
"path": "pages/mine/mine",
"style": {
"navigationBarTitleText": "个人中心",
"navigationBarBackgroundColor": "#fff",
"navigationBarTextStyle": "black"
}
},
{
"path": "pages/mine/allrecordlist",
"style": {
"navigationBarTitleText": "全部打卡记录",
"navigationBarBackgroundColor": "#fff",
"navigationBarTextStyle": "black"
}
},
// 评论
{
"path": "pages/course/courseComment",
"style": {
"navigationBarTitleText": "评论",
"navigationBarBackgroundColor": "#fff",
"navigationBarTextStyle": "black"
}
},
{
"path": "pages/mine/changeinfo",
"style": {
"navigationBarTitleText": "个人信息",
"navigationBarBackgroundColor": "#fff",
"navigationBarTextStyle": "black"
}
},
// 课程列表
{
"path": "pages/course/course",
"style": {
"navigationBarTitleText": "课程列表",
"navigationBarBackgroundColor": "#fff",
"navigationBarTextStyle": "black"
}
},
// 课程介绍
{
"path": "pages/course/courseIntro",
"style": {
"navigationBarTitleText": "课程介绍",
"navigationBarBackgroundColor": "#fff",
"navigationBarTextStyle": "black"
}
},
// 课程详情
{
"path": "pages/course/courseDetail",
"style": {
"navigationBarTitleText": "课程详情",
"navigationBarBackgroundColor": "#fff",
"navigationBarTextStyle": "black"
}
},
// 打卡提交
{
"path": "pages/course/submitClock",
"style": {
"navigationBarTitleText": "提交内容",
"navigationBarBackgroundColor": "#fff",
"navigationBarTextStyle": "black"
}
},
// 打卡记录
{
"path": "pages/course/recordClock",
"style": {
"navigationBarTitleText": "打卡记录",
"navigationBarBackgroundColor": "#fff",
"navigationBarTextStyle": "black"
}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"tabBar": {
"color": "#BDC4CE",
"selectedColor": "#EE8B27",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [{
"pagePath": "pages/index/index",
"iconPath": "static/index_01.png",
"selectedIconPath": "static/index_06.png",
"text": "首页"
},
{
"pagePath": "pages/course/course",
"iconPath": "static/index_02.png",
"selectedIconPath": "static/index_05.png",
"text": "课程列表"
},
{
"pagePath": "pages/mine/mine",
"iconPath": "static/index_03.png",
"selectedIconPath": "static/index_04.png",
"text": "个人中心"
}
]
}
}