KindergartenAppletUI/pages.json

40 lines
963 B
JSON
Raw Normal View History

2022-10-17 16:00:25 +08:00
{
"easycom": {
"^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
},
2022-08-24 15:01:04 +08:00
"pages": [ //pages数组中第一项表示应用启动页参考https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": ""
}
2022-10-17 16:00:25 +08:00
}, {
"path": "pages/phone/phone",
"style": {
"navigationBarTitleText": "",
"enablePullDownRefresh": false
}
}, {
2022-08-24 15:01:04 +08:00
"path": "pages/home/home",
"style": {
"navigationBarTitleText": ""
}
}
2022-10-17 16:00:25 +08:00
],
2022-08-24 15:01:04 +08:00
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
2022-10-17 16:00:25 +08:00
"uniIdRouter": {},
"condition": { //模式配置,仅开发期间生效
"current": 0, //当前激活的模式(list 的索引项)
"list": [{
"name": "", //模式名称
"path": "", //启动页面,必选
"query": "" //启动参数在页面的onLoad函数里面得到
}]
}
2022-08-24 15:01:04 +08:00
}