加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pages.json 2.75 KB
一键复制 编辑 原始数据 按行查看 历史
艾迪 提交于 2021-03-25 16:14 . first commit
{
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "懒人自媒体"
}
}
,{
"path" : "pages/public/login",
"style" :
{
// 隐藏导航栏
"app-plus":{
"titleNView":false
},
"navigationBarTitleText": "用户登录",
"enablePullDownRefresh": false
}
}
,{
"path" : "pages/public/register",
"style" :
{
// 隐藏导航栏
"app-plus":{
"titleNView":false
},
"navigationBarTitleText": "用户注册",
"enablePullDownRefresh": false
}
}
,{
"path" : "pages/user/user",
"style" :
{
"navigationBarTitleText": "用户中心",
"enablePullDownRefresh": false
}
}
,{
"path" : "pages/video/list",
"style" :
{
"navigationBarTitleText": "视频列表",
"enablePullDownRefresh": true
}
}
,{
"path" : "pages/kefu/index",
"style" :
{
"navigationBarTitleText": "联系客服",
"enablePullDownRefresh": false
}
}
],
"tabBar": {
"color": "#999999",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"selectedColor": "#FA436A",
// "fontSize":"24rpx",
"list": [{
"pagePath": "pages/index/index",
"iconPath": "static/tab-home.png",
"selectedIconPath": "static/tab-home-current.png",
"text": "主页"
},
{
"pagePath": "pages/video/list",
"iconPath": "static/video.png",
"selectedIconPath": "static/video_cure.png",
"text": "我的视频"
},
{
"pagePath": "pages/kefu/index",
"iconPath": "static/kefu.png",
"selectedIconPath": "static/kefu_cure.png",
"text": "联系客服"
},
{
"pagePath": "pages/user/user",
"iconPath": "static/tab-my.png",
"selectedIconPath": "static/tab-my-current.png",
"text": "我的"
}
]
},
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化