35 lines
730 B
JSON
35 lines
730 B
JSON
{
|
||
"pages": [
|
||
//pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
||
{
|
||
"path": "pages/index/index",
|
||
"style": {
|
||
"navigationStyle": "custom",
|
||
"orientation": "landscape" // 设置为横屏
|
||
}
|
||
|
||
},
|
||
{
|
||
"path": "pages/index/indexDark",
|
||
"style": {
|
||
"navigationStyle": "custom",
|
||
"orientation": "landscape" // 设置为横屏
|
||
}
|
||
|
||
}
|
||
// {
|
||
// "path": "pages/login/login",
|
||
// "style": {
|
||
// "navigationBarTitleText": "注册页"
|
||
// }
|
||
// }
|
||
|
||
],
|
||
"globalStyle": {
|
||
"navigationBarTextStyle": "black",
|
||
"navigationBarTitleText": "uni-app x",
|
||
"navigationBarBackgroundColor": "#F8F8F8",
|
||
"backgroundColor": "#F8F8F8"
|
||
},
|
||
"uniIdRouter": {}
|
||
} |