加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pages.json 3.03 KB
一键复制 编辑 原始数据 按行查看 历史
A visitor. 提交于 2022-11-06 09:29 . 哔哩哔哩uniapp基础入门项目
{
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
// 新建页面之后要在这里配置 但是还不懂如何自动配置
{
"path": "pages/index/index"
},
{
"path": "pages/cart/cart",
"style": {}
},
{
"path": "pages/member/member",
"style": {
}
},
{
"path": "pages/news/news",
"style": {
}
},
{
"path": "pages/goods/goods",
"style": {
"navigationBarTitleText": "商品列表",
// 开启下拉刷新
"enablePullDownRefresh": true
}
},
{
"path": "pages/contact/contact",
"style": {
"navigationBarTitleText": "关于我们"
}
}, {
"path": "pages/pics/pics",
"style": {
"navigationBarTitleText": "社区图片",
"enablePullDownRefresh": false
}
}, {
"path": "pages/videos/videos",
"style": {
"navigationBarTitleText": "学习视频",
"enablePullDownRefresh": false
}
},
{
"path": "pages/new-detail/new-detail",
"style": {
"navigationBarTitleText": "咨询详情",
"enablePullDownRefresh": false
}
}
,{
"path" : "pages/goods-detail/goods-detail",
"style" :
{
"navigationBarTitleText": "商品详情",
"enablePullDownRefresh": false
}
}
],
"globalStyle": {
"navigationBarTextStyle": "white",
"navigationBarTitleText": "橙汁e商城", //更改标题 要去掉上面那个
"navigationBarBackgroundColor": "#b50e03", //顶部颜色
"backgroundColor": "#F8F8F8"
},
// 底部tabber栏
"tabBar": {
// 配置选中的颜色 跟list同级
"selectedColor": "#b50e03",
// 未选中的默认颜色
"color": "#cccccc",
// 数组
"list": [{
"text": "首页",
// 跳转页面
"pagePath": "pages/index/index",
// icon 默认
"iconPath": "static/icon/home.png",
// 选中的图标
"selectedIconPath": "static/icon/home-active.png"
},
{
"text": "资讯",
// 跳转页面
"pagePath": "pages/news/news",
// icon 默认
"iconPath": "static/icon/news.png",
// 选中的图标
"selectedIconPath": "static/icon/news-active.png"
},
{
"text": "购物车",
// 跳转页面
"pagePath": "pages/cart/cart",
// icon 默认
"iconPath": "static/icon/cart.png",
// 选中的图标
"selectedIconPath": "static/icon/cart-active.png"
},
{
"text": "会员",
// 跳转页面
"pagePath": "pages/member/member",
// icon 默认
"iconPath": "static/icon/member.png",
// 选中的图标
"selectedIconPath": "static/icon/member-active.png"
}
]
},
"uniIdRouter": {
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化