加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pages.json 4.18 KB
一键复制 编辑 原始数据 按行查看 历史
速度七十迈的蜗牛 提交于 2021-10-26 00:37 . 初始化
{
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/home/Home",
"style":
{
"navigationBarTitleText": "首页",
"enablePullDownRefresh": false
}
}
,{
"path" : "pages/category/Category",
"style" :
{
"navigationBarTitleText": "分类",
"enablePullDownRefresh": false
}
}
,{
"path" : "pages/cart/Cart",
"style" :
{
"navigationBarTitleText": "购物车",
"enablePullDownRefresh": false
}
}
,{
"path" : "pages/goods/Goods",
"style" :
{
"navigationBarTitleText": "超级卖场",
"enablePullDownRefresh": false
}
}
,{
"path" : "pages/pics/Pics",
"style" :
{
"navigationBarTitleText": "",
"enablePullDownRefresh": false
}
}
,{
"path" : "pages/contact/Contact",
"style" :
{
"navigationBarTitleText": "关于我们",
"enablePullDownRefresh": false,
"navigationBarBackgroundColor":"#d81416"
}
}
,{
"path" : "pages/videos/Videos",
"style" :
{
"navigationBarTitleText": "",
"enablePullDownRefresh": false
}
}
,{
"path" : "pages/detail/Detail",
"style" :
{
"navigationBarTitleText": "商品详情",
"enablePullDownRefresh": false
}
}
,{
"path" : "pages/profile/Profile",
"style" :
{
"navigationBarTitleText": "个人中心",
"enablePullDownRefresh": false
}
},
{
"path" : "pages/login/Login",
"style" :
{
"navigationBarTitleText": "登录",
"enablePullDownRefresh": false
}
}
,{
"path" : "pages/order/Order",
"style" :
{
"navigationBarTitleText": "订单结算",
"enablePullDownRefresh": false
}
}
],
"globalStyle": {
"navigationBarTextStyle": "white",
"navigationBarTitleText": "练习",
"navigationBarBackgroundColor": "#ff8198",
"backgroundColor": "#F8F8F8"
},
"tabBar": {
"selectedColor":"#ff8198",
"list": [
{
"text":"首页",
"pagePath":"pages/home/Home",
"iconPath":"./static/img/home.png",
"selectedIconPath":"static/img/home-active.png"
},
{
"text":"分类",
"pagePath":"pages/category/Category",
"iconPath":"./static/img/category.png",
"selectedIconPath":"static/img/category_active.png"
},
{
"text":"购物车",
"pagePath":"pages/cart/Cart",
"iconPath":"./static/img/cart.png",
"selectedIconPath":"static/img/cart-active.png"
},
{
"text":"我的",
"pagePath":"pages/profile/Profile",
"iconPath":"./static/img/member.png",
"selectedIconPath":"static/img/member-active.png"
}
]
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化