小程序
小游戏
企业微信
微信支付
扫描小程序码分享
pc端小程序,在有webview的页面自定义tabbar无法显示?
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
appid和复现方式提供下呢
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
自定义tabbar要用cover-view,就不会被覆盖了
<!--miniprogram/custom-tab-bar/index.wxml-->
<cover-view class="tab-bar">
<cover-view class="tab-bar-border"></cover-view>
<cover-view wx:for="{{list}}" wx:key="index" class="tab-bar-item" data-path="{{item.pagePath}}" data-index="{{index}}" bindtap="switchTab">
<cover-image src="{{selected === index ? item.selectedIconPath : item.iconPath}}" style="width: 40rpx;height: 40rpx;"></cover-image>
<cover-view style="color: {{selected === index ? selectedColor : color}}">{{item.text}}</cover-view>
</cover-view>
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
appid和复现方式提供下呢
自定义tabbar要用cover-view,就不会被覆盖了
<!--miniprogram/custom-tab-bar/index.wxml-->
<cover-view class="tab-bar">
<cover-view class="tab-bar-border"></cover-view>
<cover-view wx:for="{{list}}" wx:key="index" class="tab-bar-item" data-path="{{item.pagePath}}" data-index="{{index}}" bindtap="switchTab">
<cover-image src="{{selected === index ? item.selectedIconPath : item.iconPath}}" style="width: 40rpx;height: 40rpx;"></cover-image>
<cover-view style="color: {{selected === index ? selectedColor : color}}">{{item.text}}</cover-view>
</cover-view>
</cover-view>