35 lines
1003 B
JSON
35 lines
1003 B
JSON
{
|
||
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
||
{
|
||
"path": "pages/home",
|
||
"style": {
|
||
"navigationBarTitleText": "BMI计算"
|
||
}
|
||
}
|
||
,{
|
||
"path" : "pages/height",
|
||
"style" :
|
||
{
|
||
"navigationBarTitleText": "身高预测",
|
||
"enablePullDownRefresh": false
|
||
}
|
||
|
||
}
|
||
,{
|
||
"path" : "pages/bmi",
|
||
"style" :
|
||
{
|
||
"navigationBarTitleText": "BMI计算",
|
||
"enablePullDownRefresh": false
|
||
}
|
||
|
||
}
|
||
],
|
||
"globalStyle": {
|
||
"navigationBarTextStyle": "black",
|
||
"navigationBarTitleText": "uView",
|
||
"navigationBarBackgroundColor": "#FFFFFF",
|
||
"backgroundColor": "#FFFFFF"
|
||
}
|
||
}
|