1***@qq.com
1***@qq.com
  • 发布:2020-06-29 23:56
  • 更新:2020-06-30 09:21
  • 阅读:3195

使用Hbuilder新建完uniapp项目,配置了tabBar,界面不显示

分类:uni-app

HubilderX版本:2.7.14.20200618
配置文件:
{
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "uni-app"
}
}
,{
"path" : "pages/home/home",
"style" : {
"navigationBarTitleText": "首页"
}
}
,{
"path" : "pages/profile/profile",
"style" : {
"navigationBarTitleText": "我的"
}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"tabBar": {
"color": "#7A7E83",
"selectedColor": "#3cc51f",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [{
"pagePath": "pages/home/home",
"iconPath": "static/component.png",
"selectedIconPath": "static/componentHL.png",
"text": "首页"
}, {
"pagePath": "pages/profile/profile",
"iconPath": "static/component.png",
"selectedIconPath": "static/componentHL.png",
"text": "我的"
}]
}
}

不显示tabBar是啥原因啊,请大佬指点

2020-06-29 23:56 负责人:无 分享
已邀请:
1***@qq.com

1***@qq.com (作者)

自己已解决,因为默认跳转的是index界面,需要配置index到tabBar中
{
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "uni-app"
}
}
,{
"path" : "pages/home/home",
"style" : {
"navigationBarTitleText": "首页"
}
}
,{
"path" : "pages/profile/profile",
"style" : {
"navigationBarTitleText": "我的"
}
}
,{
"path" : "pages/bxlist/bxlist",
"style" : {
"navigationBarTitleText": "报修单"
}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"tabBar": {
"color": "#7A7E83",
"selectedColor": "#3cc51f",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [{
"pagePath": "pages/index/index",
"iconPath": "static/component.png",
"selectedIconPath": "static/componentHL.png",
"text": "首页"
}, {
"pagePath": "pages/bxlist/bxlist",
"iconPath": "static/extui.png",
"selectedIconPath": "static/extuiHL.png",
"text": "报修单列表"
}, {
"pagePath": "pages/profile/profile",
"iconPath": "static/template.png",
"selectedIconPath": "static/templateHL.png",
"text": "我的"
}]
}
}

该问题目前已经被锁定, 无法添加新回复