加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pages.json 2.22 KB
一键复制 编辑 原始数据 按行查看 历史
{
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path" : "pages/home/home",
"style" :
{
}
},
{
"path" : "pages/cate/cate",
"style" :
{
}
},
{
"path" : "pages/cart/cart",
"style" :
{
}
},
{
"path" : "pages/my/my",
"style" :
{
}
}
],
// subPackages 是分包的配置选项,里面的每一项都是一个分包
"subPackages":[
{
"root":"subpkg",
"pages" :
[
{
"path" : "goods_detail/goods_detail",
"style" :
{
"navigationBarTitleText" : ""
}
},
{
"path" : "goods_list/goods_list",
"style" :
{
"navigationBarTitleText" : "",
// 开启下拉刷新
"enablePullDownRefresh": true,
// 上拉加载, 触发距离为 150 像素
"onReachBottomDistance": 150,
"backgroundColor": "#F8F8F8"
}
},
{
"path" : "search/search",
"style" :
{
"navigationBarTitleText" : ""
}
}
]
}
],
"globalStyle": {
"navigationBarTextStyle": "white",
"navigationBarTitleText": "黑马优购", // 小程序标题
"navigationBarBackgroundColor": "#C00000",
"backgroundColor": "#F8F8F8"
},
"uniIdRouter": {},
// tabBar组件
"tabBar":{
"selectedColor": "#C00000",
"list": [
{
"pagePath": "pages/home/home",
"text": "首页",
"iconPath": "static/tab_icons/home.png",
"selectedIconPath": "static/tab_icons/home-active.png"
},
{
"pagePath": "pages/cate/cate",
"text": "分类",
"iconPath": "static/tab_icons/cate.png",
"selectedIconPath": "static/tab_icons/cate-active.png"
},
{
"pagePath": "pages/cart/cart",
"text": "购物车",
"iconPath": "static/tab_icons/cart.png",
"selectedIconPath": "static/tab_icons/cart-active.png"
},
{
"pagePath": "pages/my/my",
"text": "我的",
"iconPath": "static/tab_icons/my.png",
"selectedIconPath": "static/tab_icons/my-active.png"
}
]
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化