KeChengJiaoFu/pages.json

65 lines
1.8 KiB
JSON
Raw Permalink Normal View History

2023-05-11 02:51:56 +00:00
{
2024-10-21 07:22:55 +00:00
"pages": [{ //首页
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "首页",
// "enablePullDownRefresh": false,
"navigationStyle": "custom"
2023-05-11 02:51:56 +00:00
}
2024-10-21 07:22:55 +00:00
} ,{
"path" : "pages/my/my",
"style" :
{
"navigationBarTitleText": "我的",
"enablePullDownRefresh": false
}
}
2023-05-11 02:51:56 +00:00
],
"subPackages": [{ //A包
2024-10-21 07:22:55 +00:00
"root": "pagesA",
"pages": [
{
"path": "login/login",
"style": {
"navigationBarTitleText": "登录"
}
}
]
}],
2023-05-11 02:51:56 +00:00
2024-10-21 07:22:55 +00:00
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarBackgroundColor": "#FFFFFF", //导航栏背景色
"navigationStyle": "custom", //禁用原生导航栏,微信小程序可用
"backgroundColor": "#FFFFFF", //下拉显示出来的窗口的背景色
"backgroundTextStyle": "light", //下拉 loading 的样式,仅支持 dark / light
2023-05-11 02:51:56 +00:00
// "transparentTitle":"none",//导航栏整体(前景、背景)透明设置。支持 always 一直透明 / auto 滑动自适应 / none 不透明
2024-10-21 07:22:55 +00:00
"app-plus": {
"titleNView": false, //禁用原生导航栏APP和H5可用
"bounce": "none",
"scrollIndicator": "none"
},
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
}
},
"condition": { //模式配置,仅开发期间生效
"current": 0, //当前激活的模式(list 的索引项)
"list": [{
"name": "", //模式名称
"path": "", //启动页面,必选
"query": "" //启动参数在页面的onLoad函数里面得到
}]
},
"easycom": {
"^u-(.*)": "@/components/uview-ui/components/u-$1/u-$1.vue"
}
}