59 lines
1023 B
JSON
59 lines
1023 B
JSON
{
|
|
"pages": [ // pages数组中第一项表示应用启动页
|
|
{
|
|
"path": "pages/index",
|
|
"style": {
|
|
"navigationBarTitleText": "首页"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/home",
|
|
"style": {
|
|
"navigationBarTitleText": "首页"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/user/login",
|
|
"style": {
|
|
"navigationBarTitleText": "登录"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/user/register",
|
|
"style": {
|
|
"navigationBarTitleText": "注册"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/levels",
|
|
"style": {
|
|
"navigationBarTitleText": "关卡列表"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/game",
|
|
"style": {
|
|
"navigationBarTitleText": "游戏页面"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/progress",
|
|
"style": {
|
|
"navigationBarTitleText": "进度页面"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/share",
|
|
"style": {
|
|
"navigationBarTitleText": "分享页面"
|
|
}
|
|
}
|
|
],
|
|
"globalStyle": {
|
|
"navigationBarTextStyle": "black",
|
|
"navigationBarTitleText": "uni-app",
|
|
"navigationBarBackgroundColor": "#F8F8F8",
|
|
"backgroundColor": "#F8F8F8"
|
|
}
|
|
}
|