小程序
小游戏
企业微信
微信支付
扫描小程序码分享
开发者工具内是正常的。但是IOS真机就不生效了,默认black。
2021年就有人反应了,现在已经2022了。
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
{
"pages": [
"pages/index/index",
"pages/mine/mine",
"pages/testRecord/testRecord",
"pages/orderRecord/orderRecord",
"pages/aboutMe/aboutMe",
"pages/personalityExplain/personalityExplain",
"pages/testPage/testPage",
"pages/testResult/testResult",
"pages/testUserData/testUserData"
],
"window": {
"backgroundColor": "#150f24",
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#150f24",
"navigationBarTitleText": "OKR研究院",
"navigationBarTextStyle": "white"
},
"tabBar": {
"borderStyle": "white",
"selectedColor": "#ffffff",
"color": "#f1f1f1",
"list": [
"iconPath": "./images/tabbar/index.png",
"selectedIconPath": "./images/tabbar/index@selected.png",
"text": "首页",
"pagePath": "pages/index/index"
"iconPath": "./images/tabbar/mine.png",
"selectedIconPath": "./images/tabbar/mine@selected.png",
"text": "我的",
"pagePath": "pages/mine/mine"
}
]
"sitemapLocation": "sitemap.json",
"style": "v2"
手机上么?
问题似乎是 darkmode:true 时 dark 模式不能 black、light 模式不能 white,borderStyle 似乎被 darkmode:ture 接管不能自定义了。
关于这些 我个人建议自定义tabbar,也就自己手搓一个页面,然后嵌套多个tabbar页面组件就可以搞定,也不会出现tabbar的问题了
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
{
"pages": [
"pages/index/index",
"pages/mine/mine",
"pages/testRecord/testRecord",
"pages/orderRecord/orderRecord",
"pages/aboutMe/aboutMe",
"pages/personalityExplain/personalityExplain",
"pages/testPage/testPage",
"pages/testResult/testResult",
"pages/testUserData/testUserData"
],
"window": {
"backgroundColor": "#150f24",
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#150f24",
"navigationBarTitleText": "OKR研究院",
"navigationBarTextStyle": "white"
},
"tabBar": {
"backgroundColor": "#150f24",
"borderStyle": "white",
"selectedColor": "#ffffff",
"color": "#f1f1f1",
"list": [
{
"iconPath": "./images/tabbar/index.png",
"selectedIconPath": "./images/tabbar/index@selected.png",
"text": "首页",
"pagePath": "pages/index/index"
},
{
"iconPath": "./images/tabbar/mine.png",
"selectedIconPath": "./images/tabbar/mine@selected.png",
"text": "我的",
"pagePath": "pages/mine/mine"
}
]
},
"sitemapLocation": "sitemap.json",
"style": "v2"
}
微信: 8.0.18 机型: ios iphone 13pro
手机上么?
问题似乎是 darkmode:true 时 dark 模式不能 black、light 模式不能 white,borderStyle 似乎被 darkmode:ture 接管不能自定义了。
关于这些 我个人建议自定义tabbar,也就自己手搓一个页面,然后嵌套多个tabbar页面组件就可以搞定,也不会出现tabbar的问题了